# Coil Sector Scores

> Coil Sector Scores is a paid API for AI agents from coil.trade, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Returns scored strength ratings (0-100) for all S&P 500 sector ETFs with percentile, signal light, and entry state to identify sector rotation leadership

## Facts

- Endpoint: GET https://coil.trade/api/board/sectors
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coil-sector-scores-869bb46e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x1io0oyHTt5fBDw21uoIc

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-sector-scores-869bb46e
```

Example prompt: Which S&P 500 sectors are showing green signals right now, and what are their scores? I want to see the full sector rotation picture — XLK, XLF, XLE, XLV, the works.

## When to prefer this

Use this endpoint when you need a top-down view of sector rotation across all S&P 500 sectors at once, without scanning individual stocks. Ideal for identifying which sectors are leading or lagging, determining regime-aligned sector entries, and building macro-aware trading filters. Prefer over single-name endpoints when sector leadership context is needed before drilling into individual stocks.

## Known failure modes

- Market closed or outside hours — data may be stale or unavailable
- Rate limiting if called excessively — 402 or 429 response
- Upstream data feed delay — scores may lag by more than 5 minutes during high-volatility periods
- Malformed response if the scoring engine is restarting

## How this service works

Sector rotation scores — which sectors are strong right now? One read returns every S&P 500 sector ETF (XLK, XLF, XLV, XLE, XLI and the rest) scored 0-100 with percentile, green/yellow/red light and entry state, plus which sectors each book's regime currently calls green. Spot leadership rotation top-down without scanning 500 single names. Refreshed ~5 min in market hours, timestamped. Research, not advice.

## Output

A list of all S&P 500 sector ETFs (XLK, XLF, XLV, XLE, XLI, etc.) each with a numeric score from 0-100, percentile rank, green/yellow/red signal light, entry state, and regime-based green designation. Data is refreshed approximately every 5 minutes during market hours and includes a timestamp.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "books": {
   "spx": {
    "label": "SPX",
    "sectors": [
     {
      "sym": "XLK",
      "name": "Information Technology",
      "light": "g",
      "state": "cold",
      "opp_pct": 85,
      "opp_score": 63.6
     }
    ],
    "regime_mode": "NAMES_ON",
    "green_sectors": [
     "Energy",
     "Health Care"
    ]
   }
  },
  "product": "coil-sectors",
  "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-22",
  "book_order": [
   "spx",
   "qqq",
   "macro"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coil-sector-scores-869bb46e/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)
