Skip to main content
GET
/
user
/
me
Get Profile
curl --request GET \
  --url https://api.totalis.trade/user/me \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "username": "<string>",
    "email": "<string>",
    "wallet_address": "<string>",
    "approved": true,
    "waitlisted": true,
    "auto_redeemed": true,
    "airdrop": {
      "success": true,
      "amount": 123,
      "pending": true
    },
    "created_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Privy JWT issued to the web dashboard. Sent as Authorization: Bearer <jwt>. The Privy session signer underpins all wallet-signed actions.

Query Parameters

ref
string

Referral / invite code to auto-redeem on first login.

Response

User profile

data
object
required