# Crypto ETF Sentinel — Single Issuer POS AM Profile

> Crypto ETF Sentinel — Single Issuer POS AM Profile is a paid API for AI agents from api.cryptoetfsentinel.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns the latest POS AM-extracted regulatory profile for one US spot crypto ETF issuer, including custodian, sponsor fee, authorized participants, in-kind eligibility, and basket size, identified by SEC CIK.

## Facts

- Endpoint: GET https://api.cryptoetfsentinel.com/v1/profiles/issuer
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-cryptoetfsentinel-com-9824776e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B2qeUud7SGzgDixsW6GGC

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-9824776e
```

Example prompt: Pull the POS AM profile for the iShares Bitcoin Trust ETF — I need the custodian, sponsor fee, authorized participants, in-kind eligibility, and basket size; their SEC CIK is 0001980994.

## When to prefer this

Use this endpoint when you need structured regulatory profile data (custodian, fee, APs, basket size, in-kind eligibility) for a specific US spot crypto ETF issuer identified by SEC CIK. Prefer this over the bulk profiles endpoint when querying a single issuer to minimize cost, and over the XBRL snapshot endpoint when you need POS AM prospectus-sourced structural details rather than financial metrics like AUM or NAV.

## Known failure modes

- Invalid or non-numeric CIK returns a 400 validation error
- CIK not found in the Crypto ETF Sentinel database returns a 404
- CIK belongs to a non-crypto or non-spot ETF issuer — no profile available
- Payment not included or insufficient — 402 Payment Required
- POS AM filing not yet processed — partial or missing fields in response
- Rate limiting or service unavailability — 429 or 5xx errors

## How this service works

Crypto ETF Sentinel — Latest POS AM-extracted operational profile for one US spot crypto ETF issuer: custodian, sponsor fee, AP counts, in-kind eligibility, basket size. Use when you need one fund's current plumbing terms. Pass the issuer's SEC CIK as cik.

## Output

A structured object containing the latest POS AM-extracted profile for the requested issuer: custodian name, sponsor fee (expense ratio), list of authorized participants (APs), whether in-kind creation/redemption is eligible, and basket size — all sourced from SEC POS AM filings.

## 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-9824776e/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)
