# Coil Crypto Day Board

> Coil Crypto Day Board is a paid API for AI agents from coil.trade, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns a full-universe crypto day-state map for 81 Robinhood-tradable coins, including price, trend signals, momentum, breadth, and cross-sectional rankings refreshed every ~15 minutes.

## Facts

- Endpoint: GET https://coil.trade/api/crypto/day
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coil-crypto-day-board-89a8a010
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i0KAkh7nxJoMEBtX4NubA

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-crypto-day-board-89a8a010
```

Example prompt: Pull the full crypto day-state board right now — I want to see which of the 81 Robinhood-tradable coins are in an UP state, their relative strength vs BTC, volume z-scores, and where the BTC/ETH gate stands.

## When to prefer this

Use this endpoint when you need a holistic, pre-computed state map across the full 81-coin Robinhood-tradable crypto universe rather than a single-coin lookup. It is ideal for screening, breadth assessment, or building a ranked watchlist without computing individual indicators. Prefer it over the Coil Crypto Gate when you need per-coin detail rather than just the BTC master gate signal.

## Known failure modes

- Stale data if refresh cycle is delayed — timestamps should be checked
- Rate limit or payment errors if x402 USDC micropayment fails
- Empty or partial universe if a coin is temporarily delisted from Robinhood
- Service downtime leading to 5xx errors

## How this service works

24/7 crypto day-state board — 81 Robinhood-tradable coins (BTC, ETH, SOL, XRP, DOGE…). Per coin: price, 24h/7d change, trend vs 20/50/200-day, ATR%, RS vs BTC, tape lights, volume z, room to the 20d high, UP/CHOP/DOWN state, ranks — PLUS day-trade grades: GO, FUEL and EFF vs the BTC anchor, SETUP shape and ROOM in bars. Publishes every ~5 minutes around the clock when the market moved. A state map, not a ranking. Research, not advice.

## Output

A state map across 81 crypto coins including: current price, 24h and 7d percent change, trend distance from 20/50/200-day moving averages, ATR%, relative strength vs BTC, multi-timeframe tape lights, volume z-score, room to the 20-day high, a mechanical UP/CHOP/DOWN classification, and a cross-sectional rank. Also includes the daily BTC/ETH gate and market breadth reading. Data refreshed approximately every 15 minutes, 24/7.

## 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": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coil-crypto-day-board-89a8a010/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)
