# Coil Hold State

> Coil Hold State 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 the published trend hold-state for up to 10 stock or crypto symbols, including hold strength, readiness, maturity flags, gap-risk grade, and regime context.

## Facts

- Endpoint: GET https://coil.trade/api/board/hold
- 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-hold-state-3644ee8c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V-NTaTCIQdeyOlTtUYKiA

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-hold-state-3644ee8c
```

Example prompt: Check the current Coil hold state for NVDA and MSFT — I want to know if their trend states are still intact, what the hold strength is, whether either is showing a maturity-late flag, and what the overnight gap-risk grade looks like.

## When to prefer this

Use this endpoint when you need to know whether a specific stock or crypto trend state is currently intact, how strong it is, and whether mechanical flip conditions are approaching — without rebuilding trend-following logic yourself. Prefer it over the Single-Name Score endpoint when your primary question is about hold durability, gap risk, or maturity rather than a composite score.

## Known failure modes

- Invalid or unsupported symbol returns an error or empty result for that symbol
- More than 10 symbols in a single request may be rejected or truncated
- Stale data outside market hours — last published state may be hours old
- Payment failure (x402) blocks the response if USDC balance is insufficient
- Crypto symbols only return IN/CASH state, not the full equity hold-state fields

## How this service works

Per-symbol HOLD-STATE read — is the published trend state behind a name intact? GET /api/board/hold?sym=NVDA (up to 10, comma-separated, one price) returns each name's state, hold strength 0-100, readiness, maturity-late flag, overnight gap-risk grade and its book's regime, with the mechanical rules states flip on. BTC-USD/ETH-USD return the crypto book's IN|CASH daily-close state. Impersonal publication — never your entry or size. ~5-min refresh in market hours. Research, not advice.

## Output

Returns per-symbol objects containing: current hold state label, hold strength (0–100), readiness indicator, maturity-late boolean flag, overnight gap-risk grade, and the book regime. BTC-USD and ETH-USD return the crypto book's IN or CASH daily-close state. Data refreshes approximately every 5 minutes during 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-hold-state-3644ee8c/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)
