# Wellnizz Dashboard Specs

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

Retrieves structured dashboard specification cards and provenance data for a given health analysis, covering genetics, biomarkers, wearables, and lab results.

## Facts

- Endpoint: GET https://app.wellnizz.com/dashboard-specs/%7Banalysis_id%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wellnizz-dashboard-specs-ac3dbeaa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pHIaFJXMRGzikhKYi6qp4

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-dashboard-specs-ac3dbeaa
```

Example prompt: Pull the Wellnizz dashboard specs for analysis ID an_abc123 so I can see the health cards, biomarker breakdowns, and provenance sources.

## When to prefer this

Use this endpoint when you need to retrieve structured, pre-computed health dashboard visualization specs for a specific Wellnizz analysis — particularly when you need the card layout, biomarker panels, genetics summaries, wearable data, and data provenance in a single call. Prefer this over raw data endpoints when the goal is rendering or displaying a dashboard rather than processing raw values.

## Known failure modes

- Invalid or nonexistent analysis_id returns empty cards array or 404
- Malformed analysis_id format causes request rejection
- Payment not completed (x402 protocol) results in 402 Payment Required
- Unauthorized access to another user's analysis returns 401 or 403
- Network timeout if analysis data is large or backend is slow

## 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 containing an array of dashboard cards (structured health metric panels covering genetics, biomarkers, wearables, and lab data), a provenance object with source IDs indicating data origins, and the analysis_id confirming which analysis was queried.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cards": [],
  "provenance": {
   "source_ids": []
  },
  "analysis_id": "an_..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wellnizz-dashboard-specs-ac3dbeaa/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)
