# Wellnizz Providers Directory API

> Wellnizz Providers Directory API is a paid API for AI agents from app.wellnizz.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Searches and lists health providers (labs, wearable integrations, genetics providers) filterable by type, region, and modality.

## Facts

- Endpoint: GET https://app.wellnizz.com/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/wellnizz-providers-directory-api-92bc7c3f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S30d_08DZGKnQKuvv1VNk

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-providers-directory-api-92bc7c3f
```

Example prompt: Can you find genetics providers on Wellnizz that offer whole genome sequencing (wgs) in the US, covering both genetics and biomarkers modalities?

## When to prefer this

Use this endpoint when an agent needs to discover health data providers — specifically labs, wearable integrations, or genetics services — filterable by genetics type (wgs, exome, snp_array), geographic region, or modality (biomarkers, wearables, genetics, behavioral). Prefer this over general web search when structured, filterable provider data is needed for health or precision medicine workflows.

## Known failure modes

- Invalid or unrecognized genetics type value returns empty results or error
- Unsupported region string returns no matching providers
- Malformed modalities comma-separated string causes parsing error or empty result
- No providers match the combination of filters — empty list returned
- Payment not processed (x402) — request rejected before query executes

## How this service works

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

## Output

A list of health providers matching the requested filters, including labs, wearable integrations, and genetics providers with details relevant to the specified type, region, and modalities.

## 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/wellnizz-providers-directory-api-92bc7c3f/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)
