# Wellnizz Genetics Analyze

> Wellnizz Genetics Analyze is a paid API for AI agents from app.wellnizz.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Analyzes genetic data to produce health findings, biomarker insights, and personalized action plans

## Facts

- Endpoint: POST https://app.wellnizz.com/genetics/analyze
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wellnizz-genetics-analyze-2f03edb4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ql4SmsPGs25UCFDXD9P4R

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-genetics-analyze-2f03edb4 -d '<json body>'
```

Example prompt: Can you analyze my raw genetic data file and give me a breakdown of my health findings, biomarker risks, and what I should do about them based on my genome?

## When to prefer this

Choose this endpoint when you need to extract structured health insights and action plans directly from raw genetic data in a single API call. It is well-suited for health apps, personalized medicine platforms, and wellness agents that already have genetic input data and need actionable findings. Prefer this over generic LLM-based genomics queries when you need a structured JSON result with a persistent analysis ID for downstream tracking.

## Known failure modes

- Invalid or malformed genetic data input returns an error
- Unsupported genome file format may cause processing failure
- Incomplete genetic dataset may produce empty or partial findings
- Payment failure (x402) prevents endpoint from processing the request
- Rate limiting or quota exceeded may return a 429 error

## 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 analysis ID, a status field (e.g. 'complete'), and a findings array listing genetic insights, biomarker flags, and recommended action items derived from the submitted genetic 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-genetics-analyze-2f03edb4/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)
