# Coil Point-in-Time Scores

> Coil Point-in-Time Scores is a paid API for AI agents from coil.trade, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns as-published per-name stock scores (opportunity percentile, entry quality, hold strength) for any archived date, enabling lookahead-bias-free historical research.

## Facts

- Endpoint: GET https://coil.trade/api/board/asof
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coil-point-in-time-scores-51b53691
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BVh0GpFFig2GD_k7T6Dsu

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-point-in-time-scores-51b53691
```

Example prompt: Pull the Coil point-in-time scores as they were published on January 10, 2025 — I need the opportunity percentile, entry quality, and hold strength for every name in the archive so I can backtest without lookahead bias.

## When to prefer this

Choose this endpoint when you need historically accurate, as-published Coil scores for a specific past date — particularly for backtesting or strategy validation where lookahead bias must be eliminated. Use it over the live scanner or single-name endpoints when the research question is about what was knowable at a past point in time, not what is actionable today. Prefer it when you need the full cross-section of names (not just one stock) at a historical snapshot.

## Known failure modes

- Requested date has no archive entry — returns empty result or 404 if that date was not a publish day
- Invalid date format (not YYYY-MM-DD) causes a bad request error
- Date in the future returns no data since scores are only appended on publish days
- Network or payment failure (x402) results in 402 Payment Required if USDC payment is not included

## How this service works

Point-in-time score history — what did Coil actually publish on a given date? Returns the as-published per-name scores (opportunity percentile, entry quality, hold strength) for every S&P 500 / Nasdaq-100 / macro name on any archived date (?date=YYYY-MM-DD; omit for the list of archived dates). Lookahead-bias-clean by construction: served verbatim from the append-only publish log, never recomputed. Immutable: one new date per session, never revised. Research, not advice.

## Output

Returns a collection of as-published scores for every covered name (S&P 500, Nasdaq-100, macro) on the requested date, including opportunity percentile, entry quality, and hold strength — served verbatim from Coil's append-only publish log. If no date is specified, returns the list of all available archived dates.

## 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "date": "2026-07-21",
  "names": {
   "CVX": [
    91,
    70,
    84
   ],
   "NVDA": [
    97,
    62,
    88
   ]
  },
  "fields": [
   "opp_pct",
   "entry_q",
   "hold_q"
  ],
  "product": "coil-asof",
  "provenance": "served verbatim from the append-only publish log"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coil-point-in-time-scores-51b53691/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)
