# CRYPTYX AI Trade Ideas

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

Returns AI-generated ranked trade ideas for digital assets with composite signals, market regime context, and configurable return horizons

## Facts

- Endpoint: GET https://cryptyx.ai/api/v1/ai/trade-ideas
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-ai-trade-ideas-059bd69e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V_nEGG7kGGzI3FZiVFwXa

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-trade-ideas-059bd69e
```

Example prompt: Pull me the top 10 crypto trade ideas from CRYPTYX for a 14-day horizon — I want to see the market regime, signal hit rates, and composite scores for each asset.

## When to prefer this

Use this endpoint when an agent needs AI-synthesized, ranked trade ideas across multiple digital assets with quantitative signal backing, market regime context, and configurable time horizons. Prefer this over raw price feeds or exchange order APIs when the goal is idea generation rather than execution — especially when the user wants multi-metric composite scoring rather than a single indicator.

## Known failure modes

- Invalid horizon value (must be 7d, 14d, or 30d) returns a 400 error
- Limit out of range (must be 3-20) returns a validation error
- Payment not attached or invalid x402 payment header returns 402 Payment Required
- Service unavailable due to data pipeline issues returns 503
- No trade ideas available for current market conditions may return empty ideas array

## How this service works

CRYPTYX is the intelligence layer for autonomous trading agents — the same institutional-grade research stack that powers professional desks, priced per call in USDC. 200+ digital assets, 440+ metrics, 150+ signals across 8 factor classes, walk-forward validated, macro-regime aware.

Agents don't just consume signals. They backtest any factor over 5+ years of history (Metric Slicer), fork and validate custom signal recipes (Signal Forge), scan the universe for live matches, decompose per-asset conviction across every factor class, and query the full stack in natural language.

The loop: define your conviction thesis → validate it against history → scan for live matches → execute via OKX, Kraken, or Coinbase execution toolkits. CRYPTYX is the brain; exchanges are the rails. No accounts, no API keys, no rate cards.

## Output

An array of ranked trade ideas, each containing the asset ticker, current market regime (e.g. expansion), top signal setups with their hit rates and signal IDs, and a composite score. Results are sorted by rank and scoped to the requested forward return horizon (7d, 14d, or 30d).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number",
   "description": "Number of trade ideas (3-20, default 5)"
  },
  "horizon": {
   "type": "string",
   "description": "Forward return horizon: 7d, 14d, or 30d"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "ok": true,
 "meta": {
  "x402_price_usd": 0.1
 },
 "ideas": [
  {
   "rank": 1,
   "asset": "BTC",
   "regime": {
    "regime": "expansion"
   },
   "top_setups": [
    {
     "hit_rate": 0.64,
     "signal_id": "VOL_COMPRESSION_7v30"
    }
   ],
   "composite_score": 0.42
  }
 ],
 "horizon": "14d"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-ai-trade-ideas-059bd69e/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)
