Login
Auth
Login
/auth/login
POST
Login
This endpoint requires authentication. Include your Bearer token in the Authorization header.
Description
/auth/login Description:The
/auth/login endpoint authenticates a user and returns an access token.
Rate Limiting:This endpoint is rate limited to 20 requests per 3 minutes per IP address. Method:
POST
Request Payload:
| Parameter | Type | Description | Required |
|---|---|---|---|
| string | User’s email address | Yes | |
| password | string | User’s password | Yes |
| rememberMe | boolean | Whether to extend the session duration | No |
Returns an access token and user information on successful authentication.
Note: The access token should be included in theSecurity:Authorizationheader asBearer <token>for subsequent requests.
This endpoint requires no authentication.
Code Examples
Authorizations
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Body
application/json