# Coil Live Session (1h)

> Coil Live Session (1h) is a paid API for AI agents from coil.trade, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Purchases a 1-hour live trading session token for $0.10 USDC, granting access to real-time per-name structural stop/target levels, risk-reward, conviction, and ladder placement data refreshed every ~5 minutes during US market hours.

## Facts

- Endpoint: GET https://coil.trade/api/live/session
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coil-live-session-1h-9227cd2c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z7Ed1r1_VACxkl3RN7qR9

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-live-session-1h-9227cd2c
```

Example prompt: Buy me a one-hour Coil Live session for $0.10 so I can pull real-time stop levels, targets, and risk-reward data on US stocks without setting up a subscription.

## When to prefer this

Choose this endpoint when you need live intraday trading board data (stops, targets, risk-reward, conviction) for a short, defined window without committing to a subscription. Ideal for agents that trade or research occasionally and want to pay per session via crypto (USDC/x402) with no account or card required. Prefer over sibling endpoints when you need the full engine-grade board in real time rather than a morning brief, scanner snapshot, or change-detection poll.

## Known failure modes

- Payment failure or insufficient USDC balance — session token not issued
- x402 payment protocol not supported by client — handshake fails
- Market closed / outside US market hours — data feed stale or not refreshing
- Invalid or expired session token when used downstream — 401/403 on X-License-Key header
- Rate limiting or repeated calls — duplicate purchase without reuse of existing token

## How this service works

Buy 1 hour of Coil Live for $0.10 with a wallet instead of a subscription — the engine-grade board the live record trades from: per-name structural stop and target levels, risk-reward, conviction, lane and ladder placement, plus the served rulebook. Pay once over x402 and receive a session token that works anywhere the X-License-Key header is read, HTTP and MCP alike. The feed behind it refreshes about every 5 minutes in US market hours. No account, no card, no human. Research, not advice.

## Output

Returns a session token (X-License-Key) valid for 1 hour that grants access to the Coil Live feed, including per-symbol structural stop and target levels, risk-reward ratios, conviction scores, lane and ladder placement, and the served rulebook. The feed refreshes approximately every 5 minutes during US market hours.

## 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-live-session-1h-9227cd2c/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)
