Authentication
This endpoint retrieves the authenticated user’s profile based on the API token provided in the request. Use this endpoint to verify the identity of the current user and fetch basic account details.
You must include your Bearer token in the request header.
Authorizations
Responses
200
Successfully retrieved User resource.
application/json
401
Unauthorized.
application/json
get
GET /api/v1/auth HTTP/1.1
Host:
Authorization: Bearer JWT
Accept: */*
{
"uuid": "123e4567-e89b-12d3-a456-426614174000",
"is_active": 1,
"name": "text",
"email": "[email protected]",
"created_at": 1744373843,
"updated_at": 1744373843
}
Last updated
Was this helpful?