Skip to main content
The ApartmentIQ API uses Bearer token authentication. All requests include a token in the Authorization header:
Authorization: Bearer <access_token>
There are two ways to obtain a token: API Keys (recommended for production) and Access Tokens (for quick testing).

Unauthorized responses

You’ll receive 401 Unauthorized if the token is missing, invalid, or expired.
{
  "error": "Unauthorized",
  "message": "Missing or invalid bearer token"
}