# Crypto ETF Sentinel Launch Monitor

> Crypto ETF Sentinel Launch Monitor is a paid API for AI agents from api.cryptoetfsentinel.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Returns days-waiting and percentile ranking vs historical baselines for US spot crypto ETF issuers currently in the 'launch_imminent' stage, including p50/p75/p90 historical CERT/EFFECT distribution benchmarks.

## Facts

- Endpoint: GET https://api.cryptoetfsentinel.com/v1/pipeline/launch-monitor
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-cryptoetfsentinel-com-6d8e64e4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mKbQxrzotjC7jPhIN4Ygx

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 api-cryptoetfsentinel-com-6d8e64e4
```

Example prompt: Show me which US spot crypto ETFs are currently in the launch-imminent stage and how their days-waiting compares to the historical p50, p75, and p90 benchmarks — I want to know if any are statistically overdue for approval.

## When to prefer this

Use this endpoint when you need a statistical benchmarking view of how current launch-imminent crypto ETF applicants compare to historical approval timelines — particularly useful for detecting whether applications are overdue or on-track. Prefer this over single-issuer endpoints when you want a cohort-level view with built-in historical context. The persistent meta baseline makes it useful even during quiet regulatory periods.

## Known failure modes

- Empty data array if no issuers are currently in launch_imminent stage (meta with historical baselines still returned)
- API authentication/payment failure if x402 payment not provided ($0.50 USDC required)
- 503/timeout if SEC data pipeline is stalled or upstream data is stale
- Partial data if some issuers lack complete filing history for percentile computation

## How this service works

Crypto ETF Sentinel — Launch-timing tracker for launch_imminent US spot crypto ETF issuers: days waiting since 8-A12B plus percentile vs the historical 8-A12B → CERT/EFFECT distribution; the baseline is returned in meta on every call. Use when watching for imminent crypto ETF listings or gauging how overdue one is. Indicative timing, not a predicted launch date.

## Output

A JSON response containing the current cohort of launch_imminent US spot crypto ETF issuers with their individual days-waiting counts and percentile rankings against historical approval timelines, plus a meta object with p50/p75/p90 historical CERT/EFFECT distribution baselines always included even if the current cohort is empty.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "cik": "0002107730",
    "name": "Grayscale HYPE ETF",
    "crypto": "hyperliquid",
    "ticker": null,
    "percentile": 0.18,
    "days_waiting": 5,
    "filing_date_8a12b": "2026-05-07"
   }
  ],
  "meta": {
   "total": 1,
   "historical_baseline": {
    "p50": 28,
    "p75": 52,
    "p90": 78,
    "sample_size": 64,
    "max_historical": 120
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-cryptoetfsentinel-com-6d8e64e4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.cryptoetfsentinel.com](https://www.zero.xyz/host/api.cryptoetfsentinel.com/llms.txt)
