# Foreverbetter Genetics Analyze

> Foreverbetter Genetics Analyze is a paid API for AI agents from api.foreverbetter.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Runs a genetics analysis pipeline over one or more raw genetic source IDs stored in the paying wallet's private workspace.

## Facts

- Endpoint: POST https://api.foreverbetter.xyz/genetics/analyze
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/foreverbetter-genetics-analyze-38d47072
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ewng-XOBHazpdBoXUBrSU

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 foreverbetter-genetics-analyze-38d47072 -d '<json body>'
```

Example prompt: Analyze my genetic data — I've already uploaded my sources and their IDs are src_abc123 and src_def456. Run the full genetics analysis on them.

## When to prefer this

Use this endpoint when you have already imported raw genetic data (e.g. 23andMe, AncestryDNA, whole genome) into the Foreverbetter/Wellnizz wallet workspace and need to trigger the full genetics analysis pipeline. Prefer this over the biomarkers analyze endpoint specifically when working with genetic/genomic source data rather than lab panel or wearable data.

## Known failure modes

- Source IDs not found or not owned by the paying wallet — returns authorization or not-found error
- Invalid or malformed source_ids array — returns validation error
- Source data not yet fully imported or still processing — analysis may fail or return incomplete results
- Payment not authorized or insufficient USDC balance — x402 payment required error
- Analysis pipeline timeout for large genetic datasets

## How this service works

Run the genetics analyze operation over source IDs owned by the paying wallet.

## Output

Returns a genetics analysis object containing normalized genetic observations, derived insights, and potentially risk scores or trait interpretations computed from the provided source IDs stored in the paying wallet's workspace.

## 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_ids": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Source IDs in the paying wallet workspace."
      }
     },
     "required": [
      "source_ids"
     ]
    }
   },
   "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": {
  "id": "an_...",
  "status": "complete",
  "findings": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/foreverbetter-genetics-analyze-38d47072/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.foreverbetter.xyz](https://www.zero.xyz/host/api.foreverbetter.xyz/llms.txt)
