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.

Returns data about the currently authenticated user

get
Authorizations
Responses
200
Successfully retrieved User resource.
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?