# Wellnizz Wearables Analyze

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

Analyzes wearable device data to generate health findings, insights, and action plans based on activity, sleep, and biometric signals.

## Facts

- Endpoint: POST https://app.wellnizz.com/wearables/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/wellnizz-wearables-analyze-538e2432
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Mi47YEwUITnMEkC-V1KSV

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-wearables-analyze-538e2432 -d '<json body>'
```

Example prompt: Can you analyze my wearable data from this week — including my heart rate, sleep, and activity readings — and give me a summary of health findings and any action plan recommendations through Wellnizz?

## When to prefer this

Choose this endpoint when you need to process raw or structured wearable device data and receive actionable health findings in return. It is part of the Wellnizz platform which combines genetics, biomarkers, and wearables — making it ideal when the user already has wearable data on hand and wants AI-driven interpretation rather than a generic fitness summary. Prefer this over generic data storage or dashboard APIs when the goal is analysis and recommendations, not just visualization.

## Known failure modes

- Missing or malformed wearable data payload returns an error
- Unsupported wearable data format may result in empty findings
- Payment failure via x402 protocol blocks the request
- Incomplete biometric data sets may yield low-confidence or empty findings
- Service timeout if data volume is too large

## 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 with an analysis ID, a completion status, and a findings array containing health insights, flagged biomarker patterns, and potentially action plan items derived from the submitted wearable data.

## 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/wellnizz-wearables-analyze-538e2432/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)
