# Wellnizz Biomarker Analyzer

> Wellnizz Biomarker Analyzer 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).

Analyzes biomarker data to produce health findings, insights, and action plans for a user's wellness profile

## Facts

- Endpoint: POST https://app.wellnizz.com/biomarkers/analyze
- 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-biomarker-analyzer-abf78361
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qyYjAhALasxiszoj1hkA_

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-biomarker-analyzer-abf78361 -d '<json body>'
```

Example prompt: Analyze my latest biomarker results — my LDL is 142 mg/dL, HDL is 48, triglycerides are 180, fasting glucose is 105, and HbA1c is 5.7 — and tell me what the findings say about my cardiovascular and metabolic health.

## When to prefer this

Choose this endpoint when you need structured, AI-driven interpretation of biomarker or lab result data — particularly when you want health findings returned as machine-readable JSON for downstream use in wellness dashboards, action plans, or patient-facing reports. Prefer this over generic health APIs when the user has specific numeric lab values to analyze.

## Known failure modes

- Missing or malformed biomarker values cause validation errors
- Unsupported biomarker types may return empty findings
- Payment not attached or insufficient USDC triggers 402 Payment Required
- Rate limiting may cause temporary request rejection
- Ambiguous units (e.g. mg/dL vs mmol/L) may produce incorrect interpretations if not specified

## 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 a unique analysis ID, a status field indicating completion, and a findings array containing interpreted biomarker results, health insights, risk flags, and potentially recommended actions based on the submitted 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": {
      "source_ids": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Source IDs in the paying wallet workspace."
      }
     }
    },
    "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",
  "findings": []
 }
}
```

## More

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