Last updated 1 month ago
Get user details by username
/user
The username of the user
curl -L \ --url '/user?username=text'
{ "username": "text", "wallet": {}, "transactions": [ {} ] }
Search for a user by username or wallet address
/api/user/search
The username or wallet address to search for
curl -L \ --url '/api/user/search?query=text'
[ { "wallet_address": "text" } ]
Check if a username exists
/api/user/check-username
The username to check
curl -L \ --url '/api/user/check-username?username=text'
{ "value": true, "message": "text" }