Introduction
Welcome to the Alsona REST API! Let’s walk through a quick setup to get you.
API version: v1 (REST)
Groups
Authentication
Two auth patterns are supported - both use the X-API-KEY request header.
Account key - scoped to a single account:
Agency key - access any account within your agency:
The Agency key does not aggregate across accounts - you must specify account_id in the path. Both key types produce the same response for account-scoped endpoints.
Pagination
List endpoints support cursor-based pagination via the last_key query parameter:
- Make the initial request without
last_key. - If the response includes a non-null
last_key, URL-encode it and pass it as?last_key=<value>in your next request. - Repeat until
last_keyisnull- you have fetched all results.

