# CRYPTYX Active Signals Feed

> CRYPTYX Active Signals Feed 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 currently triggered trading signals for a specified digital asset, optionally filtered by signal class (e.g. trend, volatility, futures)

## Facts

- Endpoint: GET https://cryptyx.ai/api/signals/active
- 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-active-signals-feed-90db5641
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_emYBE2EcXf7i-krtXMHpi

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-feed-90db5641
```

Example prompt: Pull up all active CRYPTYX signals for BTC right now, and filter it to trend signals — I want to see which ones are triggered and what confidence scores they're showing.

## When to prefer this

Use this endpoint when you need real-time, currently-active trading signals for a specific crypto asset with confidence scoring — especially when filtering by signal class like trend (TR), volatility (VOL), or futures (FUT). Prefer this over generic market data APIs when you want pre-computed, actionable signal triggers rather than raw price or volume data.

## Known failure modes

- Unknown asset symbol returns empty signal list or 400 error
- Invalid signal class filter returns 400 with schema validation error
- No signals currently triggered returns count:0 with empty array
- Rate limiting or payment failure returns 402 if USDC balance is insufficient
- Service unavailable during market data outage returns 503

## How this service works

Today's firing signals across 200+ assets — atomic and composite arrays with confidence, macro regime, and event-deltas vs the prior day. Anti-predictive signals filtered. Response also carries a _next block pointing at explain / top / market-pulse/conviction / active-signals / trade-ideas so you can drill in without leaving the flow.

## Output

Returns a list of currently triggered signals for the requested asset, each with a signal ID (e.g. TR_MOMO_CONT_14D), a boolean triggered flag, and a confidence score between 0 and 1, plus a total count of matching signals.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "asset": {
   "type": "string",
   "description": "Asset symbol (e.g. BTC, ETH, SOL)"
  },
  "class": {
   "type": "string",
   "description": "Signal class filter (e.g. TR, VOL, FUT)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "count": 42,
 "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-active-signals-feed-90db5641/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)
