Overview
Authenticates a user with their email and password. On success, returns a JWT Bearer token you can use to authorize subsequent requests.Request
Method:POST
URL: /api/v1/auth/login
Headers
| Header | Value |
|---|---|
| Content-Type | application/json |
Body parameters
The email address associated with your account.
Your account password.
Response
The JWT Bearer token to include in the
Authorization header of authenticated requests.Always
"bearer".Example
Response example
Errors
| Status | Meaning |
|---|---|
| 401 | Unauthorized — incorrect email or password |
| 422 | Validation error — missing required fields |