# CRYPTYX Natural Language Intelligence Query

> CRYPTYX Natural Language Intelligence Query is a paid API for AI agents from www.cryptyx.ai, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Accepts a free-form natural language question and returns an AI-generated answer grounded in CRYPTYX's full analytical state — factor scores, signal triggers, and macro regime context — with structured source citations.

## Facts

- Endpoint: POST https://www.cryptyx.ai/api/intelligence/query
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-natural-language-intelligence-query-6a71f177
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VDetP_z-lb8g6h0eTXO9R

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-natural-language-intelligence-query-6a71f177 -d '<json body>'
```

Example prompt: Ask CRYPTYX: 'Which crypto assets are showing the strongest momentum right now, and what factor scores and signal triggers are driving them?' — return the answer in JSON format.

## When to prefer this

Use this endpoint when the question is open-ended or exploratory and does not map cleanly to a fixed CRYPTYX schema endpoint. Ideal for LLM agent pipelines where the agent needs to pipe user questions directly into CRYPTYX without wiring up per-endpoint logic. Prefer the structured endpoints (factor matrix, signal ranking, regime classification) when you need deterministic tabular data; use this endpoint when you need a synthesized, cited narrative answer across the full CRYPTYX state.

## Known failure modes

- Query too vague or ambiguous — returns a low-confidence or empty answer with no sources cited
- Query maps to a domain outside CRYPTYX's coverage — answer may be generic without grounded sources
- Payment not included or rejected — 402 Payment Required error, no response body
- Malformed request body (missing query field) — 400 Bad Request
- Service temporarily unavailable — 503 with no answer returned
- Response truncated for very broad queries spanning many assets

## Output

A JSON object containing a natural language answer summarizing the intelligence findings, plus an array of structured sources cited — each source identifying its type (factor, signal, regime), the asset, the factor class, and the t-score or confidence value that grounded the answer.

## 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": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string",
       "description": "Natural-language intelligence question (1-1000 chars). Examples: 'highest conviction assets', 'signals firing on BTC', 'thesis for ETH', 'regime analog to today'."
      },
      "format": {
       "enum": [
        "json"
       ],
       "type": "string",
       "description": "Response format. Only 'json' supported. Defaults to 'json'."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "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": "application/json",
 "example": {
  "answer": "BTC shows strong momentum with TR factor t-score of 1.42...",
  "sources": [
   {
    "type": "factor",
    "asset": "BTC",
    "class": "TR",
    "t_score": 1.42
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-natural-language-intelligence-query-6a71f177/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.cryptyx.ai](https://www.zero.xyz/host/www.cryptyx.ai/llms.txt)
