# Wellnizz Analysis Result Retrieval

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

Retrieves a completed health analysis by ID, returning findings from genetics, biomarkers, wearables, or lab data processed by Wellnizz.

## Facts

- Endpoint: GET https://app.wellnizz.com/analyses/%7Bid%7D
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wellnizz-analysis-result-retrieval-78d8f1af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z3dNbbBlP9aogKPrR9O3J

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-analysis-result-retrieval-78d8f1af
```

Example prompt: Pull up the Wellnizz analysis results for analysis ID an_abc123 and tell me what findings were returned.

## When to prefer this

Use this endpoint when you have a specific Wellnizz analysis ID and need to retrieve its current status and findings. Prefer this over initiating a new analysis when the analysis has already been submitted and you are polling for results or displaying completed health data to the user.

## Known failure modes

- Invalid or malformed analysis ID returns a 404 or error response
- Analysis not yet complete returns a non-complete status with empty findings
- Unauthorized access to another user's analysis returns a 401 or 403
- Payment not satisfied results in a 402 response requiring 0.005 USDC via x402 protocol

## How this service works

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

## Output

A JSON object containing the analysis ID, a status field (e.g. 'complete'), and a findings array with health insights derived from the analyzed data source (genetics, biomarkers, lab results, or wearables).

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wellnizz-analysis-result-retrieval-78d8f1af/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)
