← Back to Help Center

API authentication

API Authentication

PeopleOS APIs use JWT (JSON Web Token) authentication:

  1. Call POST /api/v1/auth/login with your email and password
  2. Receive a JWT token valid for 24 hours
  3. Include the token in all subsequent requests: Authorization: Bearer <token>

For 2FA-enabled accounts, the login flow includes an additional TOTP verification step. See the API documentation for full endpoint reference.