# Wellnizz Genetics Ancestry Analysis

> Wellnizz Genetics Ancestry Analysis 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 return ancestry composition and geographic heritage map regions for a user.

## Facts

- Endpoint: POST https://app.wellnizz.com/genetics/ancestry
- 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-ancestry-analysis-9228d597
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Bk6BvgI_HQv78Y4ffkCjr

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-ancestry-analysis-9228d597 -d '<json body>'
```

Example prompt: Can you analyze my genetic data on Wellnizz and show me my full ancestry composition with the geographic regions my DNA traces back to?

## When to prefer this

Choose this endpoint when a user wants to extract ancestry composition and geographic heritage regions from their genetic data within the Wellnizz platform, especially when combined with other Wellnizz biomarker or health data. Prefer this over generic ancestry services when the user's genetic data is already stored in Wellnizz or when the result needs to feed into a broader Wellnizz health dashboard or action plan.

## Known failure modes

- Missing or invalid genetic data input returns incomplete or empty ancestry array
- No genetic data on file for the user results in a non-complete status
- Malformed request body returns a 400-level error
- Insufficient USDC balance or payment failure prevents call execution
- Data still processing returns a non-complete status with empty arrays

## 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 response with a status field (e.g. 'complete'), an ancestry array containing ancestry composition segments, and a geographic_map object with a list of heritage regions derived from the user's genetic data.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {
      "source_id": {
       "type": "string",
       "description": "Genetics source ID returned by an import."
      },
      "resolution": {
       "type": "string",
       "enum": [
        "continental",
        "regional",
        "sub_population"
       ],
       "description": "Requested ancestry resolution."
      }
     },
     "required": [
      "source_id"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "complete",
  "ancestry": [],
  "geographic_map": {
   "regions": []
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wellnizz-genetics-ancestry-analysis-9228d597/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)
