Reference
API Reference
The Authaz Management API is the same surface the dashboard uses. Every endpoint is documented in the interactive reference (rendered from our OpenAPI spec). This page covers how to authenticate and what's where.
Your first call#
curl https://your-app.authaz.io/api/v1/users \
-H "X-API-Key: $AUTHAZ_API_KEY"A 200 returns the first page of users — a data array plus a next cursor (see Pagination below). A 401 means the key is wrong. A 403 means it's valid but lacks the required permission. The interactive reference has the exact response schema for every endpoint.
