# Wellnizz File Import

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

Imports a health data file (biomarkers, genetics, wearables, or lab results) and returns normalized health observations with a source record.

## Facts

- Endpoint: POST https://app.wellnizz.com/imports/file
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wellnizz-file-import-02b9a69d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vBjr6rGP5sATYLan-p7Cy

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-file-import-02b9a69d -d '<json body>'
```

Example prompt: Upload my recent blood panel lab results file to Wellnizz and give me the normalized biomarker observations so I can track my health data.

## When to prefer this

Use this endpoint when you have a raw health data file (lab report, genetics export, wearable data dump) that needs to be ingested and normalized into structured biomarker observations. Prefer this over manual data entry or generic file parsers when dealing specifically with health/genomics file formats that Wellnizz recognizes, and when you need the output categorized and ready for downstream health analytics or dashboard display.

## Known failure modes

- Unsupported file format returns an error — only recognized health data formats are accepted
- File too large or malformed results in a parsing failure with no observations returned
- Missing or invalid authentication/payment header causes a 402 or 401 response
- Empty or zero-byte file upload returns an empty observations array
- Unrecognized lab or genetics provider format may yield empty normalized_observations

## How this service works

Wellnizz API and MCP-compatible service for genetics, biomarkers, wearables, lab discovery, dashboard specs, action plans, and hosted billing.

## Output

Returns a JSON object containing a source record (with an ID like 'src_...' and a category label such as 'biomarkers') and an array of normalized health observations extracted from the uploaded file.

## 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": {
      "category": {
       "type": "string",
       "enum": [
        "biomarkers",
        "wearables",
        "genetics",
        "behavioral"
       ],
       "description": "Wellness data modality."
      },
      "filename": {
       "type": "string",
       "description": "Original filename when available."
      },
      "content_type": {
       "type": "string",
       "description": "MIME type when available."
      },
      "provider": {
       "type": "string",
       "description": "Source provider or device."
      },
      "text": {
       "type": "string",
       "description": "UTF-8 payload. Use data_base64 instead for binary data."
      },
      "data_base64": {
       "type": "string",
       "description": "Base64-encoded payload."
      }
     },
     "required": [
      "category"
     ]
    }
   },
   "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": {
  "source": {
   "id": "src_...",
   "category": "biomarkers"
  },
  "normalized_observations": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wellnizz-file-import-02b9a69d/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)
