# ChainQuery Bitcoin Rich List Top 100

> ChainQuery Bitcoin Rich List Top 100 is a paid API for AI agents from intel.chainquery.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns the top 100 Bitcoin addresses by balance from a weekly UTXO-set snapshot, including address labels

## Facts

- Endpoint: GET https://intel.chainquery.com/v1/richlist/top100
- 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/chainquery-bitcoin-rich-list-top-100-1199cda8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V6JD4AZOCb_7BOeGhHF7H

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 chainquery-bitcoin-rich-list-top-100-1199cda8
```

Example prompt: Pull up the current Bitcoin rich list — I want to see the top 100 addresses by balance along with their labels from the latest on-chain snapshot.

## When to prefer this

Choose this endpoint when you need a quick, labeled overview of Bitcoin's largest holders based on a weekly UTXO snapshot, without requiring an API key. Ideal for on-chain wealth distribution analysis, identifying known whale or institutional addresses, or building Bitcoin market intelligence dashboards. Prefer this over real-time mempool endpoints when historical weekly accuracy is acceptable and you want labeled, curated address data.

## Known failure modes

- Payment failure: x402 payment of $0.05 USDC not fulfilled, returning 402 Payment Required
- Snapshot unavailability: weekly UTXO snapshot not yet generated, returning 503 or empty data
- Rate limiting or network error returning 429 or 5xx
- Stale data: snapshot may be up to 7 days old if weekly refresh has not yet completed

## How this service works

ChainQuery Bitcoin Intelligence: independent Bitcoin-native on-chain data over x402, no API key. Top 100 addresses by balance from the weekly UTXO-set snapshot, with labels.

## Output

A ranked list of the top 100 Bitcoin addresses by balance, sourced from the most recent weekly UTXO-set snapshot. Each entry includes the address, its BTC balance, any known labels (e.g. exchange, miner, custodian), and a data freshness timestamp indicating when the snapshot was taken.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "as_of": {
       "description": "data freshness timestamp"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainquery-bitcoin-rich-list-top-100-1199cda8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.chainquery.com](https://www.zero.xyz/host/intel.chainquery.com/llms.txt)
