Users
Get user information
Returns the authenticated user's account details.
Get user information
cURL
curl --request GET \
--url https://api.example.com/v3/users/me \
--header 'Authorization: Bearer your-api-token' 200 application/json
{
"id": "usr_xyz789",
"name": "Test User",
"email": "[email protected]",
"verified": true,
"plan": "pro",
"updated_at": "2026-05-11T08:00:00Z"
} Returns the authenticated user’s account details.
Headers
- Authorization string required header
Bearer your-api-token - Accept string required header
application/json
Response codes
HTTP status- 200
Returns the authenticated user's account details.
- 401
Unauthorized — invalid or missing API token.