# Foreverbetter Biomarkers Analyze

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

Runs a biomarker analysis operation over health data source IDs owned by the paying wallet, producing structured health insights.

## Facts

- Endpoint: POST https://api.foreverbetter.xyz/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/foreverbetter-biomarkers-analyze-8aa0983b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rq4OCkLJC7l38uiKvcTjz

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-biomarkers-analyze-8aa0983b -d '<json body>'
```

Example prompt: Analyze the biomarker sources I've already uploaded to my Foreverbetter workspace so I can see what my latest lab panel results mean for my health.

## When to prefer this

Use this endpoint when you have already imported biomarker data (lab panels, wearable readings, genetics) into the Foreverbetter workspace via the import endpoint and need to trigger the analysis computation before generating recommendations, action plans, or dashboards. This is the required processing step between raw data import and higher-level health insight generation.

## Known failure modes

- Source IDs not found or not owned by the paying wallet — 403 or 404 error
- Wallet has insufficient USDC balance to cover the $0.05 fee — payment failure
- Invalid or malformed source IDs in the request body — 400 validation error
- Source data not yet fully imported or normalized — analysis may fail or return partial results
- Rate limiting or service unavailability — 429 or 503 error

## How this service works

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

## Output

Returns a structured biomarker analysis object tied to the paying wallet, including an analysis ID and normalized health insights derived from the submitted source IDs, which can then be used for action plans, recommendations, and dashboards via sibling endpoints.

## 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/foreverbetter-biomarkers-analyze-8aa0983b/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)
