Skip to main content
POST
/
api
/
debank
/
tokens
/
holders
/debank/tokens/holders
curl --request POST \
  --url https://api.anysite.io/api/debank/tokens/holders \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "id": "<string>",
  "chain": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "DebankTokenHolder",
    "web3_id": "<string>",
    "name": "<string>",
    "portfolio_usd_value": 123,
    "follower_count": 123,
    "is_vip": false,
    "image": "<string>",
    "amount": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
id
string
required

Token id: its contract address (0x...) or DeBank coin id (e.g. eth)

chain
string
required

DeBank chain id the token lives on (e.g. eth, bsc, base)

count
integer
required

Max number of top holders to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:DebankTokenHolder
web3_id
string | null
name
string | null
portfolio_usd_value
number | null
follower_count
integer | null
is_vip
boolean
default:false
image
string | null
amount
number | null