# Cryptyx AI Signals Feed (Agent-Optimized)

> Cryptyx AI Signals Feed (Agent-Optimized) is a paid API for AI agents from www.cryptyx.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns a compact, LLM-prompt-optimized JSON feed of up to 143 crypto trading signals with normalized field names, optionally filtered by comma-separated asset symbols.

## Facts

- Endpoint: GET https://www.cryptyx.ai/api/ai/signals
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-ai-signals-feed-agent-optimized-2087276b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_67Y6owhiY6_EO_cczpQ4Q

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-feed-agent-optimized-2087276b
```

Example prompt: Pull the Cryptyx AI-optimized signal feed for BTC, ETH, and SOL so I can see which of the 143 signals are currently triggered and their confidence scores.

## When to prefer this

Prefer this endpoint over /api/signals/active when you need to inject signal data directly into an LLM prompt or agent context, because it uses normalized field names and a compact structure optimized for token efficiency. Choose it when filtering by specific assets and needing all 143 signals in a single lightweight call without verbose metadata.

## Known failure modes

- Invalid or unrecognized asset symbols in the comma-separated filter return empty or partial results
- Payment not provided or insufficient USDC results in 402 Payment Required
- Malformed query parameter format causes 400 Bad Request
- No signals currently triggered for requested assets returns an empty signals array
- Rate limiting or quota exceeded returns 429 Too Many Requests

## How this service works

CRYPTYX | institutional-grade crypto intelligence: 150+ signals, 440+ metrics, 200+ assets. | Per-asset bundle of latest atomic + composite signal snapshot plus N-day event lookback, pulled from four api.v_*_ux views and grouped by asset. Response: {ok, asof_day, assets[]} where each asset carries {asset, asof_day, regime (expansion/consolidation/deleveraging), regime_confidence, atomic:{snapshot,events}, composite:{snapshot,events}}. 143 atomic signals across 8 classes (CORR/EFF/FLOW/FUT/OB/OPT/TR/VOL) and 9 IC-weighted composites, ~200 assets. Filter via assets (CSV), events_days (1-90, default 7), min_conf_pct (0-100). One call carries the full signal picture + regime gating for an agent prompt.

## Output

A JSON array of signal objects, each containing the asset symbol (e.g. 'BTC'), a signal ID (e.g. 'TR_MOMO_CONT_14D'), a boolean triggered flag, and a confidence score between 0 and 1. Coverage spans up to 143 signals, formatted with normalized field names for direct injection into LLM prompts.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "assets": {
       "type": "string",
       "description": "Comma-separated asset symbols (uppercased server-side, e.g. BTC,ETH,SOL). Empty = all assets."
      },
      "events_days": {
       "type": "integer",
       "description": "Lookback window for atomic + composite events (1-90, default 7)"
      },
      "min_conf_pct": {
       "type": "number",
       "description": "Minimum confidence_pct filter for snapshot rows (0-100, default 0). NULL confidence rows pass through."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "application/json",
 "example": {
  "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-feed-agent-optimized-2087276b/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)
