Skip to main content
POST
/
accounts
/
token
/
Obtain JWT token
curl --request POST \
  --url https://api.futureagi.com/accounts/token/ \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "user@example.com",
  "password": "password123"
}'
{
  "access": "<string>",
  "refresh": "<string>"
}

Body

application/json
email
string<email>
required

User email address

Example:

"user@example.com"

password
string<password>
required

User password

Example:

"password123"

rememberMe
boolean
default:false

Remember user session

organizationId
string<uuid>

Optional organization ID for direct login

recaptchaResponse
string

reCAPTCHA verification token

Response

Successfully authenticated

access
string

Access token (encrypted)

refresh
string

Refresh token (encrypted)