Skip to main content
GET
/
customer
/
v2
/
auth
/
me
Current User
curl --request GET \
  --url https://orbitflare.com/api/customer/v2/auth/me \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": 123,
    "name": "<string>",
    "email": "jsmith@example.com",
    "wallet_address": "<string>",
    "payment_wallet_address": "<string>",
    "balance": 123,
    "created_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer token from device or wallet auth

Response

User info.

success
boolean
Example:

true

data
object