# CRYPTYX Active Signals

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

Returns currently triggered intelligence signals with confidence grades for a given digital asset

## Facts

- Endpoint: GET https://cryptyx.ai/api/asset/active-signals
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-active-signals-5fb32bca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OHcJnJXrETjEin-Ee2GAl

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-active-signals-5fb32bca
```

Example prompt: Pull the active CRYPTYX intelligence signals for BTC right now — I want to see which ones are triggered and their confidence grades.

## When to prefer this

Use this endpoint when you need real-time, graded intelligence signals for a specific crypto asset and want both a qualitative grade and a numeric confidence score. Prefer this over generic price feeds when you need actionable, pre-computed signal intelligence rather than raw market data.

## Known failure modes

- Unknown or unsupported asset symbol returns empty signals array or 404
- Missing required 'symbol' parameter returns 400 bad request
- Payment not completed or insufficient funds returns 402 Payment Required
- Service unavailable or signal computation delay returns 503
- Rate limit exceeded returns 429

## How this service works

Per-asset triggered signal feed on the latest day — every active signal with z, confidence, IC, hit rate, regime accuracy, and full health grading. Per-signal walk-forward IS/OOS block. Live firing panel with regime context. Coverage: pass any asset in the CRYPTYX 200+ tracked universe (BTC, ETH, SOL, top-cap + long-tail).

## Output

Returns a JSON object with the asset symbol and an array of active signals, each containing a signal ID (e.g. TR_MOMO_CONT_14D), a letter grade (e.g. A), a triggered boolean, and a confidence score between 0 and 1.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "symbol"
 ],
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Asset symbol"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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