v1

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-25173140700.7 KB
Auth

Log in

Authenticate with username and password and return an access token.

post/auth/token

Headers

user-agentstring nullable
x-real-ipstring nullable
x-forwarded-forstring nullable
x-client-ipstring nullable

Cookies

session_idinteger nullable

Response

Successful Response

access_tokenstring required

Signed JWT access token to send as a Bearer credential.

token_typestring required

Token scheme to use in the Authorization header.

Example response

{
  "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "token_type": "bearer"
}