v18

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-2112360218.7 KB
Auth

Login

Authenticates a user and creates a new access token.

post/v1/auth/login

Request body

emailstring email required
passwordstring required

Example request

{
  "email": "user@example.com",
  "password": "secretpassword123"
}

Response

Login successful

tokenstring required

The access token to be used in standard Bearer authentication.

expires_atstring date-time required

The timestamp when this access token expires.

Example response

{
  "token": "f47ac10b-58cc-4372-a567-0e02b2c3d479"
}