# Glassnode Purpose Bitcoin ETF Holdings

> Glassnode Purpose Bitcoin ETF Holdings is a paid API for AI agents from x402.glassnode.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns the daily time-series of Bitcoin held by the Purpose Bitcoin ETF as a on-chain institutional holdings metric.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/institutions/purpose_etf_holdings_sum
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glassnode-purpose-bitcoin-etf-holdings-ed70e905
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BYd5U8fGu1IOim0Tk-OyW

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 glassnode-purpose-bitcoin-etf-holdings-ed70e905
```

Example prompt: Can you pull the latest daily Bitcoin holdings data for the Purpose Bitcoin ETF from Glassnode — show it as JSON with native BTC units?

## When to prefer this

Use this endpoint when you specifically need on-chain verified holdings data for the Purpose Bitcoin ETF — the first North American Bitcoin ETF — sourced from Glassnode's institutional metrics suite. Prefer this over general crypto price APIs when the goal is tracking institutional Bitcoin accumulation through a regulated ETF vehicle.

## Known failure modes

- Missing required 'a' parameter (asset symbol) returns a 400 error
- Unsupported asset symbol (non-BTC) returns a validation error
- Payment not completed via x402 protocol returns 402 Payment Required
- Invalid query parameter enum values (e.g. unsupported interval) return a 400 error
- Service unavailable or Glassnode data delay may return 503 or stale data

## How this service works

Purpose Bitcoin ETF Holdings — The number of bitcoin held by the Purpose Bitcoin ETF. Data by Glassnode.

## Output

An array of time-stamped data points, each containing a Unix timestamp (t) and the number of Bitcoin (v) held by the Purpose Bitcoin ETF at that point in time, returned in JSON or CSV format at 24h resolution.

## 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",
     "required": [
      "a"
     ],
     "properties": {
      "a": {
       "enum": [
        "BTC"
       ],
       "type": "string",
       "description": "Asset symbol, e.g. BTC, ETH"
      },
      "c": {
       "enum": [
        "native"
       ],
       "type": "string",
       "description": "Currency for denominated values, e.g. usd, native"
      },
      "f": {
       "enum": [
        "csv",
        "json"
       ],
       "type": "string",
       "description": "Response format: json or csv"
      },
      "i": {
       "enum": [
        "24h"
       ],
       "type": "string",
       "description": "Time interval / resolution, e.g. 24h, 1w, 1month"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "array",
     "items": {
      "type": "object",
      "properties": {
       "t": {
        "type": "number"
       },
       "v": {
        "type": "number"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glassnode-purpose-bitcoin-etf-holdings-ed70e905/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.glassnode.com](https://www.zero.xyz/host/x402.glassnode.com/llms.txt)
