# Cryptyx AI Health Check

> Cryptyx AI Health Check is a paid API for AI agents from cryptyx.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns service health status including build version, last pipeline run timestamp, and current signal/composite/asset counts for the Cryptyx AI platform.

## Facts

- Endpoint: GET https://cryptyx.ai/api/x402/health
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-ai-health-check-7e331290
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q3K4yTCCU343LStP4FMG3

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 cryptyx-ai-health-check-7e331290
```

Example prompt: Before I run any real queries against Cryptyx, can you do a quick health check to confirm the service is up, see what build version it's on, and check how many signals and assets it's currently tracking?

## When to prefer this

Use this endpoint as the cheapest pre-flight check before issuing any substantive Cryptyx queries. At $0.01 USDC it is the lowest-cost way to confirm the service is live, retrieve the current build version, and verify pipeline freshness without incurring the cost of a real data query.

## Known failure modes

- Service unavailable (5xx) if Cryptyx platform is down
- Payment required or rejected (402) if USDC payment is not supplied or insufficient
- Timeout if the health endpoint is under load
- Stale data if pipeline has not run recently (returned counts may lag)

## How this service works

Service health probe — build version, last pipeline run, current signal/composite/asset counts. Sub-second, no DB writes. The cheapest end-to-end pay-per-call check before issuing real queries.

## Output

Returns a lightweight health payload including the current build version, timestamp of the last pipeline run, and counts of active signals, composites, and tracked digital assets — all without triggering any database writes.

## 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": {}
    }
   },
   "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/cryptyx-ai-health-check-7e331290/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptyx.ai](https://www.zero.xyz/host/cryptyx.ai/llms.txt)
