For the complete documentation index, see llms.txt. This page is also available as Markdown.

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
/api/v1/auth
Authorizations
AuthorizationstringRequired

Authentication using a Bearer token.

Responses
200

Successfully retrieved User resource.

application/json
uuidstring · uuidOptional

The unique identifier of the user.

is_activeintegerOptional

Indicates if the user is active (0 for inactive, 1 for active).

namestring · max: 255Optional

The full name of the user.

emailstring · email · max: 255Optional

The email address of the user.

created_atinteger · int64Optional

A Unix timestamp in seconds.

Example: 1744373843
updated_atinteger · int64Optional

A Unix timestamp in seconds.

Example: 1744373843
get/api/v1/auth

Last updated

Was this helpful?