Skip to main content
POST
/
api
/
v1
/
auth
/
jwt
/
login
Log in with email and password
curl --request POST \
  --url https://api.izap.ai/api/v1/auth/jwt/login \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data [email protected] \
  --data 'password=<string>'
{
  "access_token": "eyJhbGciOiJIUzI1NiIs...",
  "refresh_token": "R0k3q1n7x9...",
  "token_type": "bearer"
}

Body

application/x-www-form-urlencoded
username
string<email>
required

Account email address.

password
string<password>
required

Response

Authenticated successfully.

access_token
string
refresh_token
string
token_type
string
Example:

"bearer"