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.
Path parameters
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
}
}Changes
Changed in 3 of the 32 revisions of this API.3
- ○
the endpoint scheme security
ApiKeyAuthwas removed from the APIapi-security-removed
This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○
- ○
the endpoint scheme security
HmacAuthwas added to the APIapi-security-added
- ○
- ○
endpoint added
endpoint-added
- ○