# Glassnode UTXO Realized Price Distribution (URPD) – ATH-Partitioned

> Glassnode UTXO Realized Price Distribution (URPD) – ATH-Partitioned 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 a histogram of Bitcoin supply distributed across 100 equal price buckets from 0 to the current all-time high, showing the share of supply whose last on-chain movement occurred in each price range.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/indicators/utxo_realized_price_distribution_ath
- 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-utxo-realized-price-distribution-urpd-ath-partitioned-60a594b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uv-afdIxZFgJ2YUPyEYd0

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-utxo-realized-price-distribution-urpd-ath-partitioned-60a594b0
```

Example prompt: Pull the ATH-partitioned UTXO realized price distribution for BTC from Glassnode so I can see how today's Bitcoin supply is spread across the 100 price buckets between zero and the all-time high.

## When to prefer this

Use this endpoint when you need a granular view of Bitcoin supply distribution by on-chain cost basis across the full historical price range up to ATH. It is ideal for identifying supply clusters, on-chain support/resistance levels, and understanding how much BTC was last moved at any given price level relative to current price. Prefer this over simpler NUPL or profit/loss endpoints when you want the full histogram shape rather than an aggregate sentiment score.

## Known failure modes

- Missing required 'a' (asset) query parameter returns a 400 validation error
- Unsupported asset symbol returns empty data or 404
- Payment not provided or failed results in 402 Payment Required
- Invalid interval enum value (anything other than '24h') returns a 400 error
- Rate limiting or server error returns 429 or 500

## How this service works

UTXO Realized Price Distribution (URPD): ATH-Partitioned — A histogram of Bitcoin supply by the price bucket in which each coin last moved on-chain. Each bar is the share of supply whose last movement fell in that bucket, with the x-axis price being the bucket's lower bound. ATH-partitioned splits the range from 0 to the current all-time high into 100 equal buckets. Data by Glassnode.

## Output

An array of data points each containing a Unix timestamp, the array of price bucket lower bounds, the supply share in each partition, the current ATH price, the current spot price, and total supply — effectively a histogram showing where Bitcoin holders last moved their coins across 100 equal price intervals spanning 0 to ATH.

## 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": {
       "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": [
        "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"
       },
       "prices": {
        "type": "array"
       },
       "ath_price": {
        "type": "number"
       },
       "partitions": {
        "type": "array"
       },
       "total_supply": {
        "type": "number"
       },
       "current_price": {
        "type": "number"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glassnode-utxo-realized-price-distribution-urpd-ath-partitioned-60a594b0/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)
