# ChainRay Token Holders

> ChainRay Token Holders is a paid API for AI agents from chainray.online, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns the list of token holders for a given token contract address on a specified blockchain network

## Facts

- Endpoint: GET https://chainray.online/token-holders/:var1
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-token-holders-552fc02e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C2Y7pPbH0a3Cw2aGOJHgk

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 chainray-token-holders-552fc02e
```

Example prompt: Can you pull the token holders list for the contract address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum?

## When to prefer this

Use this endpoint when you need on-chain holder data for a specific token contract — especially useful for DeFi research, airdrop planning, whale tracking, or governance analysis. Prefer this over general blockchain explorers when you need structured, machine-readable holder data accessible programmatically by an AI agent across 46+ chains.

## Known failure modes

- Invalid or malformed contract address returns an error response
- Unsupported blockchain network for the 'chain' parameter returns an error
- Contract address is not a token contract (e.g. an EOA or non-token contract) may return empty results or error
- Network congestion or RPC issues may cause slow or failed responses
- Rate limiting or payment failure (x402) if balance is insufficient

## How this service works

ChainRay /token-holders

## Output

A list of wallet addresses holding the specified token, along with their respective balances or share of total supply, providing a snapshot of the token's holder distribution on the requested blockchain network.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Blockchain network"
      },
      "address": {
       "type": "string",
       "description": "Wallet or contract address"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainray-token-holders-552fc02e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from chainray.online](https://www.zero.xyz/host/chainray.online/llms.txt)
