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

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
id
string
required

DeBank protocol id (e.g. uniswap3, aave3, lido)

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:DebankProtocolHolder
web3_id
string | null
name
string | null
portfolio_usd_value
number | null
follower_count
integer | null
is_vip
boolean
default:false
image
string | null
usd_value
number | null
share
number | null
cumulative_share
number | null
top_tokens
object[]