# Coil Trade Agent Board

> Coil Trade Agent Board is a paid API for AI agents from coil.trade, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns a scored, ranked trading board for ~560 S&P 500, Nasdaq-100 and macro names with opportunity, entry-timing, and hold-strength scores, plus market regime verdicts and a BTC/ETH crypto trend book.

## Facts

- Endpoint: GET https://coil.trade/api/board/agent
- 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/coil-trade-agent-board-845210d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fdd1-55123atA8sCL6JhT

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 coil-trade-agent-board-845210d8
```

Example prompt: Pull up the Coil Scanner board right now and tell me which names are rated highest for entry timing, what the overall market regime verdict is, and what the BTC/ETH trend book is showing.

## When to prefer this

Use this endpoint when an agent needs pre-computed, judgment-layer trade setup scores across the broad S&P 500/Nasdaq-100 universe rather than raw OHLCV data. Ideal when the agent needs to quickly identify which names are ready to trade, assess market regime before taking positions, or get a ranked short-list of buy candidates without doing its own technical analysis. Prefer over raw data feeds when the goal is a ready-to-act ranked list with integrated regime context.

## Known failure modes

- Payment not provided or rejected — x402 payment required at $0.25 USDC per call
- Board data temporarily unavailable outside market hours or during refresh window
- Rate limiting or quota exceeded
- Network timeout fetching the board

## How this service works

Coil Scanner — decide what to trade now instead of rebuilding it. Scored stock rankings for agents: which of ~565 S&P 500, Nasdaq-100 and macro names are set up to buy, with per-name opportunity, entry-timing and hold-strength scores; risk-on / be-selective / stand-down regime verdicts; ranked buy-list lanes; plus a long-only BTC/ETH trend book. Not raw OHLCV (that's free) — the judgment, read top-down. Refreshed ~5 min in market hours, timestamped. Research, not advice.

## Output

A timestamped JSON board containing: per-name scores (opportunity, entry-timing, hold-strength) for ~560 S&P 500, Nasdaq-100 and macro tickers; ranked buy-list lanes organized by setup quality; a market regime verdict (risk-on / be-selective / stand-down); and a long-only BTC/ETH trend book. Data is refreshed approximately every 5 minutes during market hours.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "books": {
   "spx": {
    "label": "SPX",
    "regime": {
     "mode": "NAMES_ON",
     "verdict": "…"
    }
   }
  },
  "names": [
   {
    "sym": "NVDA",
    "name": "NVIDIA",
    "state": "firing",
    "hold_q": 88,
    "sector": "Information Technology",
    "entry_q": 62,
    "opp_pct": 97
   }
  ],
  "product": "coil-board",
  "intraday": true,
  "freshness": {
   "poll_hint": "Market open — this board recomputes about every 5 minutes; polling faster returns the same payload.",
   "market_open": true,
   "next_refresh_at": "<ISO-8601 UTC — always present; do not re-buy before this>",
   "data_age_seconds": 142
  },
  "asof_daily": "2026-07-15",
  "book_order": [
   "spx",
   "qqq",
   "macro",
   "crypto"
  ],
  "computed_at": "2026-07-15 12:17:08"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coil-trade-agent-board-845210d8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from coil.trade](https://www.zero.xyz/host/coil.trade/llms.txt)
