Portfolio
Get your profile
Retrieve the authenticated user's profile by address, including their internal user ID and fee rate. This is useful for API users who need their feeRateBps (for order signing) or numeric id (used as ownerId in other flows). You can only access your own profile — requesting another user's address returns 403. If you do not want to pass an address, use GET /profiles/me.
get/profiles/{account}
Path parameters
accountstring required
Your wallet address (the address associated with your API key)
Response
User profile with fee rate and rank information
Example response
{
"id": 42,
"account": "0x27b4afBD88fE7c88c6897BB0b4ADE338D0401E37",
"username": "trader123",
"displayName": "Trader 123",
"client": "eoa",
"points": 15000,
"accumulativePoints": 50000,
"rank": {
"name": "Gold",
"feeRateBps": 200
}
}