Skip to main content
POST
/
api
/
debank
/
users
/debank/users
curl --request POST \
  --url https://api.anysite.io/api/debank/users \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "id": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "DebankUser",
    "name": "<string>",
    "web3_id": "<string>",
    "image": "<string>",
    "bio": "<string>",
    "born_at": 123,
    "usd_value": 123,
    "tvf": 123,
    "rank": 123,
    "follower_count": 123,
    "following_count": 123,
    "trust_count": 123,
    "trust_count_7d": 123,
    "twitter_id": "<string>",
    "is_vip": false,
    "is_pro": false,
    "is_spam": true,
    "is_scam": true,
    "is_contract": false,
    "tags": [],
    "used_chains": [],
    "chains": [],
    "top_coins": [],
    "top_tokens": [],
    "top_protocols": [],
    "top_collections": []
  }
]

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"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:DebankUser
name
string | null
web3_id
string | null
image
string | null
bio
string | null
born_at
integer | null
usd_value
number | null
tvf
number | null
rank
integer | null
follower_count
integer | null
following_count
integer | null
trust_count
integer | null
trust_count_7d
integer | null
twitter_id
string | null
is_vip
boolean
default:false
is_pro
boolean
default:false
is_spam
boolean | null
is_scam
boolean | null
is_contract
boolean
default:false
tags
string[]
used_chains
string[]
chains
object[]
top_coins
object[]
top_tokens
object[]
top_protocols
object[]
top_collections
object[]