# Glassnode Entities With Balance ≥ 1k Count

> Glassnode Entities With Balance ≥ 1k 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-13).

Returns the daily time-series count of unique on-chain entities holding at least 1,000 BTC coins.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/entities/min_1k_count
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glassnode-entities-with-balance-1k-count-f6a00592
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_chLRi-5k-xsxZC98IPKDd

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-entities-with-balance-1k-count-f6a00592
```

Example prompt: Can you pull the Glassnode on-chain data showing how many unique Bitcoin entities currently hold at least 1,000 BTC coins — I want the daily JSON time series for BTC.

## When to prefer this

Use this endpoint when you need authoritative on-chain data specifically about the count of entities holding ≥1,000 BTC, sourced from Glassnode's proprietary entity clustering methodology. Prefer this over address-based metrics when entity-level (cluster-adjusted) holder analysis is required, and over generic market data APIs when you need granular historical daily time-series of large-holder counts.

## Known failure modes

- Missing required 'a' (asset) query parameter returns 400 or validation error
- Unsupported asset symbol (non-BTC) rejected due to enum constraint
- Payment not provided or insufficient USDC triggers 402 Payment Required
- Invalid format ('f') or interval ('i') parameter returns error
- Service unavailability returns 5xx error
- Rate limiting or quota exhaustion returns 429

## How this service works

Number of Entities With Balance ≥ 1k — The number of unique entities holding at least 1,000 coins. Data by Glassnode.

## Output

A JSON array of timestamped data points, each with a Unix timestamp ('t') and the count of unique on-chain entities holding at least 1,000 BTC ('v'), representing a daily time series of large-holder entity counts.

## 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"
      },
      "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-entities-with-balance-1k-count-f6a00592/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)
