Skip to main content
GET
/
customer
/
v2
/
profile
Get Profile
curl --request GET \
  --url https://orbitflare.com/api/customer/v2/profile \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "data": {
    "profile": {
      "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

Profile retrieved.

success
boolean
Example:

true

message
string
data
object