Get User Info
The "Get User Info and Wallets" endpoint provides information about the authenticated user and their associated wallets. Use this endpoint to retrieve user details and wallet information.
Overview
Responses
Success (Code 200)
{
"user": {
"id": "5ebac534954b54139806c112",
"email": "fake@example.com",
"username": "fakename",
"role": "player"
},
"wallets": [
{
"id": "656ab9db6a378b91ab1871be",
"address": "0x8e9DD3c1Db3254d968967CbC367542C343273629",
"chain": "ethereum",
"custodial": true,
"nonce": 769504,
"user": "5ebac534954b54139806c112"
}
]
}Unauthorized (Code 401)
Usage
Last updated