Skip to main content
POST
/
api
/
debank
/
users
/
tokens
/debank/users/tokens
curl --request POST \
  --url https://api.anysite.io/api/debank/users/tokens \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "id": "<string>",
  "count": 2,
  "timeout": 300,
  "chain": "<string>"
}
'
[
  {
    "id": "<string>",
    "@type": "DebankToken",
    "symbol": "<string>",
    "name": "<string>",
    "chain": "<string>",
    "amount": 123,
    "price": 123,
    "price_24h_change": 123,
    "usd_value": 123,
    "decimals": 123,
    "protocol_id": "<string>",
    "is_verified": true,
    "is_core": true,
    "is_scam": true,
    "is_suspicious": true,
    "image": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
id
string
required

Wallet address (EVM 0x address)

Example:

"0xd8da6bf26964af9d7eed9e03e53415d37aa96045"

count
integer
required

Max number of token holdings to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
chain
string | null

Restrict to a single chain by its DeBank chain id (e.g. eth, bsc, base)

Response

Successful Response

id
string
required
@type
string
default:DebankToken
symbol
string | null
name
string | null
chain
string | null
amount
number | null
price
number | null
price_24h_change
number | null
usd_value
number | null
decimals
integer | null
protocol_id
string | null
is_verified
boolean | null
is_core
boolean | null
is_scam
boolean | null
is_suspicious
boolean | null
image
string | null