# CRYPTYX Recent Signals

> CRYPTYX Recent 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 recently triggered intelligence signals for a specified digital asset, such as volatility compression or other quantitative indicators

## Facts

- Endpoint: GET https://cryptyx.ai/api/signals/recent
- 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-recent-signals-8347b8ac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qzVFiS97Au0dGJGg0Vi17

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-recent-signals-8347b8ac
```

Example prompt: Show me the 10 most recent CRYPTYX signals that have triggered for ETH so I can see what intelligence indicators are firing right now.

## When to prefer this

Choose this endpoint when you need a historical or recent list of triggered signal events for a specific crypto asset, especially when you want to audit which quantitative indicators have fired over recent days. Prefer this over real-time streaming or price-feed endpoints when the goal is discrete signal event lookup rather than continuous price monitoring.

## Known failure modes

- Invalid or unsupported asset symbol returns empty events array or error
- Limit parameter too large may result in truncated or error response
- Service unavailable if upstream data pipeline is delayed
- Payment failure (x402) if USDC balance is insufficient for the $0.01 per-call fee

## How this service works

Recently triggered atomic signal events (up to 50, last 1-7 days). Per event: asset, signal_id, confidence, asof_day. Change-detection digest for monitoring. Response carries a _next block with explain / catalog / top / thesis / trade-ideas so an agent can pivot from event stream to per-event drill-down or asset thesis in one hop. Runs across 200+ digital assets — BTC, ETH, SOL, top-cap + long-tail coverage.

## Output

A list of signal events, each containing the date, asset symbol, a signal identifier (e.g. VOL_COMPRESSION_7v30), and a boolean indicating whether the signal triggered — giving a timestamped record of which quantitative intelligence signals recently fired for the requested asset.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "asset": {
   "type": "string",
   "description": "Asset symbol (e.g. BTC, ETH, SOL)"
  },
  "limit": {
   "type": "number",
   "description": "Number of results to return"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "events": [
  {
   "day": "2026-04-25",
   "asset": "ETH",
   "signal_id": "VOL_COMPRESSION_7v30",
   "triggered": true
  }
 ]
}
```

## More

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