# CRYPTYX Top Trading Setups

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

Returns the highest-graded, statistically-backtested trading setups for a given digital asset and forward-return horizon, ranked by hit rate and mean forward return.

## Facts

- Endpoint: GET https://cryptyx.ai/api/asset/top-setups
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-top-trading-setups-0a3faee0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yGXmiKkq-X2R5pdN7g-3U

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-top-trading-setups-0a3faee0
```

Example prompt: What are the top CRYPTYX trading setups for BTC right now using a 14-day forward return horizon — show me the grades and hit rates?

## When to prefer this

Use this endpoint when you need quantitatively-graded, backtested trading setups for a specific cryptocurrency with a defined forward return window. Prefer this over generic price feeds or sentiment APIs when you need signal quality scores, hit rates, and mean return estimates for systematic or algo-assisted trading decisions.

## Known failure modes

- Unsupported symbol returns empty setups array or 404
- Invalid horizon value (not 7d/14d/30d) returns 400 validation error
- No setups available for the asset at current market conditions returns empty array
- Payment failure (402) if x402 payment header is missing or insufficient
- Rate limit exceeded returns 429

## How this service works

Historical signal edge for one asset and horizon — up to 6 A/B-graded atomic signals that actually worked on this asset, grouped into reversal/continuation/breakout lanes. Per setup: hit rate, mean forward return, walk-forward IS/OOS. Coverage: pass any asset in the CRYPTYX 200+ tracked universe (BTC, ETH, SOL, top-cap + long-tail).

## Output

An array of graded trading setups for the requested asset, each containing a signal ID (e.g. VOL_COMPRESSION_7v30), a letter grade (A/B/C), a backtested hit rate (0-1), and the mean forward return over the specified horizon. Results represent the highest-conviction quantitative signals currently active for that asset.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "symbol"
 ],
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Asset symbol"
  },
  "horizon": {
   "type": "string",
   "description": "Forward return horizon: 7d, 14d, or 30d"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "asset": "BTC",
 "setups": [
  {
   "grade": "A",
   "hit_rate": 0.64,
   "signal_id": "VOL_COMPRESSION_7v30",
   "mean_fwd_return": 0.085
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-top-trading-setups-0a3faee0/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)
