Skip to content
Start in Cloud

Login

POST
/api/login
curl --request POST \
--url https://hitkeep.com/api/login \
--header 'Content-Type: application/json' \
--data '{ "email": "hello@example.com", "password": "example", "remember_me": true }'

Authenticates user credentials and issues session cookie.

Media type application/json
object
email
required
string format: email
password
required
string
remember_me
boolean
Example generated
{
"email": "hello@example.com",
"password": "example",
"remember_me": true
}

Login response

Media type application/json
object
challenge_token
string
factors
Array<string>
Allowed values: totp passkey recovery_code email_link
passkey
object
key
additional properties
any
status
string
Example
{
"factors": [
"totp"
]
}

Invalid credentials

Media type application/json
object
message
string
Example generated
{
"message": "example"
}