# Wellnizz Analyses Dashboard

> Wellnizz Analyses Dashboard is a paid API for AI agents from app.wellnizz.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Runs a health analysis and returns a structured dashboard specification covering genetics, biomarkers, wearables, lab results, and personalized action plans.

## Facts

- Endpoint: POST https://app.wellnizz.com/analyses
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wellnizz-analyses-dashboard-07238d24
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-EaEarsl0Y593q3ndo2V9

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability wellnizz-analyses-dashboard-07238d24 -d '<json body>'
```

Example prompt: Run a Wellnizz health analysis for me using my latest biomarker readings and wearable data, and give me a full dashboard spec with any recommended action items.

## When to prefer this

Choose this endpoint when you need to synthesize multiple health data sources (genetics, biomarkers, wearables, lab results) into a single structured dashboard spec with actionable insights. It is especially useful for agents building personalized health dashboards or action plans from heterogeneous health inputs, and when MCP-compatible structured output is needed for downstream rendering.

## Known failure modes

- Missing or malformed health data input results in an error response
- Incomplete genetics or biomarker data may produce an empty or minimal dashboard_spec with no cards
- Payment failure via x402 protocol blocks the call entirely
- Analysis may return status other than 'complete' if processing is still underway
- Unsupported data formats for wearables or lab results may cause parsing errors

## How this service works

Wellnizz API and MCP-compatible service for genetics, biomarkers, wearables, lab discovery, dashboard specs, action plans, and hosted billing.

## Output

Returns a JSON object with an analysis ID, a status field (e.g. 'complete'), and a dashboard_spec containing an array of cards representing different health metrics, insights, and action plan items derived from the submitted health data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "source_ids"
     ],
     "properties": {
      "profile": {
       "type": "object",
       "description": "Optional age and biological sex used for reference ranges."
      },
      "source_ids": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Source IDs returned by paid or authenticated imports."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "an_...",
  "status": "complete",
  "dashboard_spec": {
   "cards": []
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wellnizz-analyses-dashboard-07238d24/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.wellnizz.com](https://www.zero.xyz/host/app.wellnizz.com/llms.txt)
