# CRYPTYX Intelligence Query

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

Answers natural language questions about digital asset intelligence using multi-factor signals, momentum metrics, and quantitative scores across hundreds of crypto assets

## Facts

- Endpoint: POST https://cryptyx.ai/api/intelligence/query
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-intelligence-query-89f323e2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mQ0k7oGMGH3AI6Kj4CDJo

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-intelligence-query-89f323e2 -d '<json body>'
```

Example prompt: What does CRYPTYX's intelligence layer say about Bitcoin right now — specifically its TR factor t-score and overall momentum signal?

## When to prefer this

Choose this endpoint when you need quantitative, factor-based intelligence on specific digital assets expressed in natural language — particularly when you want t-scores, momentum signals, or multi-metric analysis across crypto assets. Prefer this over generic crypto price APIs when you need synthesized intelligence rather than raw price data, and over generic LLMs when you need grounded, signal-sourced answers with citations.

## Known failure modes

- Missing required 'query' field returns 400 bad request
- Vague or unsupported asset queries may return low-confidence or empty signal results
- Payment failure (x402) if USDC balance is insufficient — returns 402 Payment Required
- Unsupported format value may fall back to default or return error
- Rate limiting if many calls are made in rapid succession

## How this service works

Natural-language entry point to the full CRYPTYX stack. POST a query string; an LLM classifies into 60+ intents (conviction_ranking, market_brief, factor_breakdown, signal_explain, regime_check, top_setups, etc.) and routes to the matching pre-computed analytics over 200+ assets, the full signal registry, and 440+ metrics. Response payload is intent-shaped — a top-3 conviction query returns a compact ranking; a market_brief returns a full universe snapshot. Wire an LLM agent into CRYPTYX without plumbing 30+ endpoints.

## Output

Returns a natural language answer summarizing intelligence findings for the queried asset(s), along with structured source citations including factor type, asset ticker, factor class, and t-score values. For example: 'BTC shows strong momentum with TR factor t-score of 1.42' plus an array of source objects detailing each signal.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "Natural language intelligence query"
  },
  "format": {
   "type": "string",
   "description": "Response format (json)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "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-intelligence-query-89f323e2/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)
