White-label APIProfile & Memberships
Get User Profile
Fetch authenticated user's profile information.
Get User Profile
Fetch the authenticated user's profile, including personal info, preferences, and settings.
Request
GET /v1/users/profile
No parameters required. Uses JWT from Authorization header.
Response
{
"success": true,
"data": {
"id": "user_abc123",
"email": "user@example.com",
"name": "John Doe",
"phone": "+1-555-123-4567",
"address": { ... },
"currency": "USD",
"language": "en",
"createdAt": "2026-06-24T10:00:00Z"
}
}
Try it
Sandbox-only. Try-it requests target
https://cloud.vanitypass.com with X-Environment: Sandbox. No real bookings or charges. Production access: contact us.GET
/v1/users/profileSandbox credentials
Keys never leave your browser — they are sent only to cloud.vanitypass.com with X-Environment: Sandbox.
curl -X GET 'https://cloud.vanitypass.com/v1/users/profile' \ -H 'Content-Type: application/json' \ -H 'X-Environment: Sandbox' \