Skip to main content
The ApartmentIQ API uses HTTP Bearer token (JWT) authentication.

Send your bearer token

Include your token in the Authorization header:
Authorization: Bearer <your_api_key>

Example

curl -s \
  -H "Authorization: Bearer <your_api_token>" \
  "https://data.apartmentiq.io/apartmentiq/api/v1/accounts/9901947/comp_sets"

Unauthorized responses

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