Skip to main content
POST
/
api
/
debank
/
users
/
search
/debank/users/search
curl --request POST \
  --url https://api.anysite.io/api/debank/users/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "q": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "DebankUserSearchResult",
    "web3_id": "<string>",
    "name": "<string>",
    "bio": "<string>",
    "usd_value": 123,
    "follower_count": 123,
    "following_count": 123,
    "rank": 123,
    "twitter_id": "<string>",
    "is_vip": false,
    "is_pro": false,
    "image": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
q
string
required

Search query: a web3 id, display name or wallet address

Minimum string length: 1
count
integer
required

Max number of users 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:DebankUserSearchResult
web3_id
string | null
name
string | null
bio
string | null
usd_value
number | null
follower_count
integer | null
following_count
integer | null
rank
integer | null
twitter_id
string | null
is_vip
boolean
default:false
is_pro
boolean
default:false
image
string | null