# Glassnode Addresses with Balance ≥ $100 Count

> Glassnode Addresses with Balance ≥ $100 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 $100 USD worth of BTC or ETH, sampled at daily resolution.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/addresses/min_100_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-100-count-2b335f93
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jiy1bZtSz64ssX2a59_0h

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-100-count-2b335f93
```

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

## When to prefer this

Use this endpoint when you need Glassnode's on-chain metric for the number of addresses holding at least $100 in BTC or ETH — particularly useful for tracking retail participation, network health, or distribution of wealth among smaller holders. Prefer this over general blockchain explorers when you want aggregated, time-series analyst-grade data rather than raw transaction lookups.

## Known failure modes

- Missing required 'a' parameter returns an error — must specify BTC or ETH
- Unsupported asset symbol returns validation error
- Payment failure (402) if USDC payment not provided
- Rate limiting if too many requests made in short succession
- Invalid format parameter returns error — only 'json' or 'csv' accepted

## How this service works

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

## Output

Returns a JSON array of timestamped data points, each with a Unix timestamp (t) and the count (v) of unique addresses holding at least $100 USD in the specified asset at that time.

## 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-100-count-2b335f93/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)
