# Token Holders Analysis API

> Token Holders Analysis API is a paid API for AI agents from token-holders.api.klymax402.com, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-14).

Returns token holder distribution and concentration metrics for a given ERC-20 token contract address on Ethereum or Base

## Facts

- Endpoint: GET https://token-holders.api.klymax402.com/api/holders
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/token-holders-analysis-api-39c0d32e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8EiTa0k1TNVhZDYtpE8PK

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 token-holders-analysis-api-39c0d32e
```

Example prompt: Can you analyze the holder distribution and concentration metrics for the token at contract address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum?

## When to prefer this

Use this endpoint when you need on-chain token holder concentration data for a specific ERC-20 token on Ethereum or Base, particularly to assess ownership distribution, identify whale concentration risk, or evaluate decentralization of a token's supply.

## Known failure modes

- Invalid or non-existent contract address returns error or empty result
- Unsupported chain value returns validation error
- Token with no indexed holders may return empty dataset
- Rate limiting or payment failure may result in 402 response
- Network-specific addresses queried on wrong chain return no data

## How this service works

Get token holder analysis with concentration metrics (POST variant)

## Output

Returns token holder analysis including list of holding addresses, their balances, concentration metrics such as top-holder percentage share, Gini coefficient or similar distribution indicators, and total holder count for the specified token contract.

## 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": [
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Chain: base, ethereum (default: ethereum)"
      },
      "address": {
       "type": "string",
       "description": "Token contract address (0x...)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/token-holders-analysis-api-39c0d32e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from token-holders.api.klymax402.com](https://www.zero.xyz/host/token-holders.api.klymax402.com/llms.txt)
