# Glassnode Addresses with Balance ≥ $10 Count

> Glassnode Addresses with Balance ≥ $10 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 USD worth of BTC or ETH, providing a measure of active network participation.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/addresses/min_10_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-10-count-9ad03829
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_83MexOMvL_s8kQVhz-Lpv

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-10-count-9ad03829
```

Example prompt: How many Bitcoin addresses currently hold at least $10 USD worth of BTC? Pull the latest daily data from Glassnode in JSON format.

## When to prefer this

Use this endpoint when you need a time-series count of addresses with at least $10 USD in holdings for BTC or ETH — ideal for tracking meaningful network participation, filtering out dust wallets, and gauging adoption trends. Prefer this over raw address count metrics when you want to focus on economically active participants rather than all addresses.

## Known failure modes

- Missing required asset parameter 'a' returns a 400 error
- Unsupported asset symbol (anything other than BTC or ETH) returns an error
- Payment failure or insufficient USDC balance returns 402 Payment Required
- Invalid format parameter returns a 400 error
- Rate limiting or quota exhaustion may return a 429 error

## How this service works

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

## Output

An array of time-series data points, each with a Unix timestamp (t) and the count of unique addresses holding at least $10 USD worth of the specified asset (v), covering the requested interval.

## 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-10-count-9ad03829/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)
