# ForeverBetter Provider Directory

> ForeverBetter Provider Directory 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-14).

Search and filter health optimization providers including labs, wearable integrations, and genetics services by modality and region.

## Facts

- Endpoint: GET https://api.foreverbetter.xyz/providers
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/foreverbetter-provider-directory-fd63875e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rQqTX0eebaC-cmSOq8q20

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-provider-directory-fd63875e
```

Example prompt: Can you find all genetics providers on ForeverBetter that offer whole genome sequencing in the US, and also show me any biomarker and wearable providers available there?

## When to prefer this

Use this endpoint when an agent needs to discover which health data collection providers or integrations are available on the ForeverBetter platform — specifically when filtering by data modality (biomarkers, wearables, genetics, behavioral), genetics test type, or geographic region before initiating an analysis or data ingestion workflow.

## Known failure modes

- Invalid modality value returns error or empty result
- Unknown region string returns empty provider list
- Invalid genetics type enum value (not wgs, exome, or snp_array) returns error
- No providers match the combined filters, returning empty array
- Malformed comma-separated modalities string causes parse error

## How this service works

Find labs, wearable integrations, and genetics providers across modalities and regions.

## Output

A list of health providers filtered by the requested modalities, genetics type, and/or region — covering labs, wearable device integrations, and genetics testing services with their relevant details.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "type": {
       "type": "string",
       "description": "Optional genetics provider type such as wgs, exome, or snp_array."
      },
      "region": {
       "type": "string",
       "description": "Optional country or service region."
      },
      "modalities": {
       "type": "string",
       "description": "Comma-separated modalities: biomarkers, wearables, genetics, or behavioral."
      }
     }
    }
   },
   "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-provider-directory-fd63875e/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)
