# Glassnode Addresses with Balance ≥ $10k USD Count

> Glassnode Addresses with Balance ≥ $10k USD Count 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-14).

Returns the number of unique on-chain addresses holding at least $10,000 USD worth of BTC or ETH at daily resolution.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/addresses/min_10k_usd_count
- 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/glassnode-addresses-with-balance-10k-usd-count-7d36d87c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0PQHSfndY-Fu2cANxeKr1

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-addresses-with-balance-10k-usd-count-7d36d87c
```

Example prompt: Pull the Glassnode metric for how many Bitcoin addresses currently hold at least $10k USD — give me the daily count in JSON format.

## When to prefer this

Use this endpoint when you need on-chain address distribution data specifically filtered by a $10k USD minimum balance threshold for BTC or ETH, powered by Glassnode's institutional-grade blockchain data. Prefer this over generic price APIs when the goal is understanding wealth concentration, whale address growth, or dollar-denominated address cohort analytics.

## Known failure modes

- Missing required 'a' (asset) parameter returns validation error
- Unsupported asset symbol (not BTC or ETH) returns 400 error
- Insufficient USDC balance or failed x402 payment returns 402 Payment Required
- Invalid format parameter returns 400 error
- Rate limiting or service unavailability returns 429 or 503

## How this service works

Number of Addresses with Balance ≥ $10k — The number of unique addresses holding at least a value of $10k USD. Data by Glassnode.

## Output

Returns a time-series array of objects, each with a Unix timestamp (t) and the count of unique addresses holding at least $10,000 USD worth of the specified asset (v), at 24-hour 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",
        "ETH"
       ],
       "type": "string",
       "description": "Asset symbol, e.g. BTC, ETH"
      },
      "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-addresses-with-balance-10k-usd-count-7d36d87c/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)
