Skip to main content
POST
/
api
/
auth
/
login
POST /api/auth/login
curl --request POST \
  --url https://api.staging.tetherai.ca/api/auth/login \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "user@example.com",
  "password": "your-password"
}
'
{}

Body

application/json
email
string<email>
required

User email address

Example:

"user@example.com"

password
string<password>

User password (required for regular login)

Example:

"your-password"

Response

Successful response

Generic response envelope. Endpoint-specific fields are intentionally open.