# Crypto ETF Sentinel — Single-Issuer XBRL Snapshot

> Crypto ETF Sentinel — Single-Issuer XBRL Snapshot is a paid API for AI agents from api.cryptoetfsentinel.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns the latest XBRL-extracted financial snapshot (AUM, NAV per share, shares outstanding, expense ratio) for a single US spot crypto ETF issuer identified by SEC CIK.

## Facts

- Endpoint: GET https://api.cryptoetfsentinel.com/v1/xbrl/issuer
- Price: $0.05/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-24da2996
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__0WAb2kv9YX3Je5TWecDO

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-24da2996
```

Example prompt: Pull the latest XBRL snapshot for the Bitwise Bitcoin ETF — I need current AUM, NAV per share, shares outstanding, and expense ratio. Their SEC CIK is 0001980994.

## When to prefer this

Use this endpoint when you need a quick financial snapshot (AUM, NAV, shares, expense ratio) for a single US spot crypto ETF issuer identified by SEC CIK, without needing historical time series or comparative data across multiple issuers.

## Known failure modes

- Invalid or non-numeric CIK returns a 400/422 validation error
- CIK does not correspond to a tracked crypto ETF issuer — returns 404 or empty result
- expense_ratio field may be null if XBRL extraction missed it for this issuer
- Payment not provided or insufficient USDC — returns 402 Payment Required
- Stale XBRL data if issuer has not filed recently

## How this service works

Crypto ETF Sentinel — Single-issuer XBRL snapshot for one US spot crypto ETF: latest AUM, NAV per share, shares outstanding, expense ratio, sponsor fees, total return. Use when you need one fund's latest SEC-reported financials in a single call. expense_ratio can be null if extraction missed it. Pass the issuer's SEC CIK as cik.

## Output

A JSON object containing the issuer's most recently filed XBRL data: assets under management (AUM), NAV per share, shares outstanding, and expense ratio (which may be null if XBRL extraction did not capture it).

## Example request

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

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "cik": {
       "type": "string",
       "pattern": "^[0-9]{1,10}$",
       "description": "Zero-padded SEC CIK identifier (e.g. ``0001980994``). Optional — pass one to target a specific issuer (discover CIKs via /v1/issuers); omit to get the largest issuer by AUM."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data"
     ],
     "properties": {
      "data": {
       "description": "The endpoint payload — type varies per route"
      },
      "meta": {
       "type": "object",
       "properties": {
        "limit": {
         "type": [
          "integer",
          "null"
         ]
        },
        "total": {
         "type": [
          "integer",
          "null"
         ]
        },
        "offset": {
         "type": [
          "integer",
          "null"
         ]
        }
       }
      },
      "error": {
       "type": [
        "string",
        "null"
       ]
      }
     }
    }
   }
  }
 }
}
```

## More

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