# CRYPTYX AI Signals

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

Returns triggered trading/market signals with confidence scores for specified digital assets based on multi-metric intelligence analysis

## Facts

- Endpoint: GET https://cryptyx.ai/api/ai/signals
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-ai-signals-d0b9a960
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u8JcO3k-Sdrr2bfkJuUxW

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-signals-d0b9a960
```

Example prompt: Pull the current CRYPTYX intelligence signals for BTC, ETH, and SOL — I want to see which signals are triggered and their confidence scores.

## When to prefer this

Use this endpoint when you need real-time, confidence-scored trading signals for specific digital assets and want curated intelligence across hundreds of metrics rather than raw price data. Prefer this over generic market data APIs when you need actionable signal detection (e.g. momentum continuation, trend triggers) with a confidence rating, especially for automated trading agents making decisions based on signal state.

## Known failure modes

- Invalid or unrecognized asset symbols return empty or error response
- Malformed comma-separated assets string may cause parsing errors
- Payment failure (402) if x402 payment not properly attached
- Rate limiting if too many assets requested simultaneously
- Network timeout if signal computation takes too long

## How this service works

Per-asset bundle of the latest atomic and composite signal snapshot plus N-day event lookback, grouped by asset. Includes macro regime and confidence. The full signal picture for an agent prompt in one call. Coverage: pass any asset in the CRYPTYX 200+ tracked universe (BTC, ETH, SOL, top-cap + long-tail).

## Output

Returns an array of signal objects per asset, each containing the asset symbol, a signal ID (e.g. TR_MOMO_CONT_14D for 14-day trend momentum continuation), a boolean indicating whether the signal is currently triggered, and a confidence score between 0 and 1.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "assets": {
   "type": "string",
   "description": "Comma-separated asset symbols"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "signals": [
  {
   "asset": "BTC",
   "signal_id": "TR_MOMO_CONT_14D",
   "triggered": true,
   "confidence": 0.73
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-ai-signals-d0b9a960/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)
