User Base Data
The User Base Data API can obtain authorized user base information.
Get user base info
Method
get
Path
/v1/user
Returns
id: string - User address
web3_id: string - The user's unique id in DeBank
name: string - Same to web3_id
logo_url: string - User logo url
born_at: double - User on-chain born time
tvf: double - Value of user's followers
Request
curl -X 'GET' 'https://api.connect.debank.com/v1/user' -H 'accept: application/json' -H 'Authorization: Bearer {Your access_token}'
Response
{
"id": "0xb406359921ed307042019d8dd5ddc22949b64703",
"logo_thumbnail_url": "https://static.debank.com/image/user/logo/0xb406359921ed307042019d8dd5ddc22949b64703/4db43b0a0818618793ccc1ec5c727f30_thumbnail.png",
"logo_url": "https://static.debank.com/image/user/logo/0xb406359921ed307042019d8dd5ddc22949b64703/4db43b0a0818618793ccc1ec5c727f30.png",
"web3_id": "michwill"
"name": "michwill",
"rank_at": 12
}
Last updated