# Crypto ETF Sentinel — Per-Issuer Risk Scores

> Crypto ETF Sentinel — Per-Issuer Risk Scores 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 a composite risk score (0–99) for every US spot crypto ETF currently under SEC review, factoring in filing cadence, time-in-stage, comment-letter intensity, and historical approval baselines.

## Facts

- Endpoint: GET https://api.cryptoetfsentinel.com/v1/pipeline/risk-scores
- 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-44a8d126
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O3n2C-4-rp6NjMYxR1JCg

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-44a8d126
```

Example prompt: Pull the latest Crypto ETF Sentinel risk scores for all US spot crypto ETFs currently under SEC review — I want to see which issuers have the highest composite risk based on filing cadence, comment-letter intensity, and time-in-stage.

## When to prefer this

Use this endpoint when you need a quick, pre-computed composite regulatory risk signal across all active US spot crypto ETF applicants without having to manually analyze individual SEC filing histories. Prefer this over individual issuer comment-letter or XBRL endpoints when you want a broad risk overview rather than deep issuer-specific detail. Ideal for portfolio screening, regulatory monitoring dashboards, or comparative issuer analysis.

## Known failure modes

- No ETFs currently under SEC review — empty data array returned
- Payment not authorized — 402 Payment Required if x402 USDC payment not completed
- Invalid query parameters — 400 Bad Request with error description
- Service temporarily unavailable — 503 with retry guidance
- Stale data — scores may lag real-time SEC filings by a few hours

## How this service works

Crypto ETF Sentinel — Regulatory risk score (0-99) for every US spot crypto ETF (Bitcoin, Ethereum, Solana and more) under SEC review: a composite of filing cadence, time-in-stage, comment-letter intensity and historical approval baselines. Use when ranking or screening pending crypto ETF filings by regulatory risk. A heuristic benchmark, not a probability or prediction.

## Output

A list of per-issuer composite risk scores (0–99) for every US spot crypto ETF under SEC review, along with underlying score components such as filing cadence, time-in-stage, comment-letter intensity, and historical approval baseline comparisons. Higher scores indicate higher perceived regulatory risk. Response also includes pagination metadata (total, limit, offset) and any error string.

## Example request

```json
{
 "properties": "all"
}
```

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "cik": "0001980994",
    "name": "iShares Bitcoin Trust",
    "crypto": "bitcoin",
    "ticker": "IBIT",
    "risk_score": 12,
    "stage_label": "Trading"
   }
  ],
  "meta": {
   "total": 1
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-cryptoetfsentinel-com-44a8d126/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)
