# AI Rook Trade Idea — Live Crypto Trading Signal

> AI Rook Trade Idea — Live Crypto Trading Signal is a paid API for AI agents from agents.ai-rook.com, paid per call via x402, $0.125/call, status unknown (last checked 2026-09-14).

Returns a structured trading idea for a given crypto pair, including entry, target, stop-loss, direction, strategy, confidence, and AI-generated reasoning based on live market data.

## Facts

- Endpoint: GET https://agents.ai-rook.com/api/trade-idea
- Price: $0.125/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ai-rook-trade-idea-live-crypto-trading-signal-d3e1f05b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7ALnA5UC5MvFTMU1zea8t

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 ai-rook-trade-idea-live-crypto-trading-signal-d3e1f05b
```

Example prompt: Get me a live trading idea for BTCUSDT — I want to see the entry, target, stop, direction, and how confident the AI is right now.

## When to prefer this

Use this endpoint when you need a structured, pay-per-call AI-generated trade idea with explicit entry/target/stop levels and a confidence score for a crypto pair, especially when you want reasoning grounded in live CVD and order flow data rather than a static model output. Prefer over generic LLM prompting when you need quantitative, actionable signals with on-chain reputation accountability.

## Known failure modes

- Invalid or unsupported symbol returns an error or empty result
- Market data unavailable during exchange downtime may return stale or null signals
- Payment failure (insufficient USDC balance on Base mainnet) results in 402 response
- Network timeout if live order flow data feed is temporarily disrupted

## How this service works

Live crypto trading intelligence for AI agents — real-time BTC signals, CVD, order flow, and active strategy setups, no API keys or signup. 43 pay-per-call endpoints total: trading data, AI inference (MiniMax M2.7 (456B-parameter Mixture-of-Experts)), web utilities, verification, and ERC-8183 ACP escrow with on-chain ERC-8004 reputation attestation (Agent ID 59646). Four payment rails: USDC on Base mainnet (default), USDC on Solana mainnet, HBAR/USDC on Hedera testnet, USDT on BNB Chain testnet. One free trial call per endpoint. Prices from $0.001/call.

## Output

A JSON object containing the trading pair symbol, recommended direction (long/short), entry price, target price, stop-loss price, strategy code (e.g. S10), confidence score (0-1), AI reasoning (e.g. 'MA200 bounce with CVD confirmation'), and a timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string",
       "default": "BTCUSDT",
       "description": "Trading pair to get idea for"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "stop": 63800,
  "entry": 65000,
  "symbol": "BTCUSDT",
  "target": 68500,
  "strategy": "S10",
  "direction": "long",
  "reasoning": "MA200 bounce with CVD confirmation",
  "timestamp": "2026-07-22T07:00:00Z",
  "confidence": 0.82
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ai-rook-trade-idea-live-crypto-trading-signal-d3e1f05b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.ai-rook.com](https://www.zero.xyz/host/agents.ai-rook.com/llms.txt)
