# Glassnode Purpose Bitcoin ETF AUM

> Glassnode Purpose Bitcoin ETF AUM 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 total assets under management (AUM) of the Purpose Bitcoin ETF fund in USD.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/institutions/purpose_etf_aum_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-aum-e5ded601
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TJiz_v87zlS0IUC-ecuYr

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-aum-e5ded601
```

Example prompt: What's the current total assets under management for the Purpose Bitcoin ETF in USD? Pull the latest daily figure from Glassnode.

## When to prefer this

Use this endpoint when you need on-chain institutional Bitcoin ETF AUM data specifically for the Purpose Bitcoin ETF, sourced from Glassnode's verified on-chain analytics. Prefer this over generic financial data APIs when you need reliable, blockchain-verified institutional demand metrics for BTC.

## Known failure modes

- Missing required 'a' (asset) query parameter returns 400 error
- Invalid asset symbol (non-BTC) rejected due to enum constraint
- Payment not included or insufficient USDC causes 402 Payment Required response
- Network timeout or upstream Glassnode data unavailability returns 5xx error
- Invalid format or interval parameter may result in 400 bad request

## How this service works

Purpose Bitcoin ETF AUM — The total assets under management of the Purpose Bitcoin ETF fund. Data by Glassnode.

## Output

Returns a time-series array of objects with Unix timestamp (t) and AUM value (v) in USD representing the total assets under management of the Purpose Bitcoin ETF fund.

## 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": [
        "usd"
       ],
       "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-aum-e5ded601/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)
