# ForeverBetter Analysis Reader

> ForeverBetter Analysis Reader is a paid API for AI agents from api.foreverbetter.xyz, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Retrieves a stored health/wellness analysis by ID for the authenticated (paying) wallet owner.

## Facts

- Endpoint: GET https://api.foreverbetter.xyz/analyses/:id
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/foreverbetter-analysis-reader-ca9cbe29
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Dq6U_stI1rCzN9bvZf3b8

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-analysis-reader-ca9cbe29
```

Example prompt: Pull up my ForeverBetter analysis with ID analysis_abc123 so I can see the full results.

## When to prefer this

Use this endpoint when you already have an analysis ID and need to retrieve its full contents for a wallet that owns it. Prefer this over the recommendations or dashboard endpoints when you want the raw analysis data rather than derived insights or display specs.

## Known failure modes

- Analysis ID not found or does not belong to the paying wallet — 404 or 403 error
- Invalid or missing analysis ID path parameter — 400 bad request
- Payment not authorized or wallet mismatch — 402 payment required or auth failure
- Malformed request or unsupported method — 405 method not allowed

## How this service works

Read an analysis owned by the paying wallet.

## Output

Returns the full analysis object owned by the authenticated wallet, containing health or wellness analysis data (e.g. lab results, wearable insights, or genetics interpretations) previously generated for this user.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Analysis ID."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/foreverbetter-analysis-reader-ca9cbe29/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)
