# AgenticFi ERC-20 Token Holders by Chain

> AgenticFi ERC-20 Token Holders by Chain is a paid API for AI agents from defi-api.agenticfi.wtf, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns ERC-20 token holders on a specified EVM chain ranked by balance descending, with first-acquired and transfer-initiation flags

## Facts

- Endpoint: GET https://defi-api.agenticfi.wtf/api/token/holders/8453/:address
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenticfi-erc-20-token-holders-by-chain-177fce01
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5KUx9IcQnoeXTpkHfYUVb

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 agenticfi-erc-20-token-holders-by-chain-177fce01
```

Example prompt: Show me the top 100 holders of the token at address 0x833589fCD6EDB6E08f4c7C32D4f71b54bdA02913 on Base (chain 8453), ranked by balance, including which wallets were first acquirers or initiated transfers.

## When to prefer this

Use this endpoint when you need to identify top token holders on a specific EVM chain, analyze token concentration, find whale wallets, or detect early adopters and transfer initiators for a given ERC-20. Prefer this over generic blockchain explorers when you need structured, ranked, paginated holder data with behavioral flags (first-acquired, transfer-initiator) ready for agent consumption.

## Known failure modes

- Invalid or non-ERC-20 contract address returns an error or empty result
- Unsupported chain ID returns an error
- Limit out of range (not 1-500) causes a validation error
- Invalid pagination cursor causes an error
- Token with no holders returns empty list
- Payment failure (x402) blocks the request if USDC balance is insufficient

## How this service works

ERC-20 token holders by chain - ranked by balance descending with first-acquired and transfer-initiation flags

## Output

A paginated list of wallet addresses holding the specified ERC-20 token on the given chain, sorted by balance descending. Each entry includes the holder's balance, their rank, a flag indicating if they were among the first to acquire the token, and a flag indicating if they initiated transfers. Also includes a next_offset cursor for pagination.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "pathParams",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "chainId",
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "title": "address (required)",
       "description": "Required. ERC-20 token contract address.\nExample: 0x833589fCD6EDB6E08f4c7C32D4f71b54bdA02913"
      },
      "chainId": {
       "type": "string",
       "title": "chainId (required)",
       "description": "Required EVM chain ID, e.g. '8453' for Base Examples: 8453, 1, 42161"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "chainId",
      "address"
     ],
     "properties": {
      "limit": {
       "type": "string",
       "title": "limit (optional)",
       "description": "Optional. Maximum number of holders to return, 1-500 Examples: 100, 500"
      },
      "offset": {
       "type": "string",
       "title": "offset (optional)",
       "description": "Optional. Pagination cursor returned in next_offset Examples: eyJvZmZzZXQiOjEwMH0= (use next_offset from the previous response)"
      },
      "address": {
       "type": "string",
       "title": "address (required)",
       "description": "Required. ERC-20 token contract address.\nExample: 0x833589fCD6EDB6E08f4c7C32D4f71b54bdA02913"
      },
      "chainId": {
       "type": "string",
       "title": "chainId (required)",
       "description": "Required EVM chain ID, e.g. '8453' for Base Examples: 8453, 1, 42161"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenticfi-erc-20-token-holders-by-chain-177fce01/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from defi-api.agenticfi.wtf](https://www.zero.xyz/host/defi-api.agenticfi.wtf/llms.txt)
