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"
}
}Get the currently authenticated 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"
}
}Was this page helpful?