Auth
Login
Authenticate with email and password to receive a JWT access token.
POST
POST
Authorization header for all protected endpoints.
This endpoint is rate-limited to 10 requests per minute per IP address.
Request Body
string
required
The user’s registered email address.
string
required
The user’s account password.
Response
boolean
true when the login succeeds.string
Signed JWT (RS256). Pass this as
Authorization: Bearer <token> on subsequent requests.object
The authenticated user’s profile — id, email, name, status, and
is_from_suit flag.