API ReferenceAPI Keys & Account
List API keys
Lists all API keys for the authenticated owner with their metadata. The secret token is never included — only the public prefix and metadata are returned. Requires a read-scoped key.
Authorization
bearerAuth AuthorizationBearer <token>
Your al_live_<prefix>_<secret> API key. Mint and manage keys in the dashboard.
In: header
Response Body
application/json
application/json
curl -X GET "https://example.com/api/admin/api-keys"{ "items": [ { "id": 42, "name": "Zapier production integration", "prefix": "a1b2c3d4", "scopes": [ "read", "write" ], "last_used_at": 1751414400, "created_at": 1751328000, "revoked": false }, { "id": 37, "name": "Read-only reporting", "prefix": "9f8e7d6c", "scopes": [ "read" ], "last_used_at": null, "created_at": 1750896000, "revoked": true } ]}{ "detail": "auth required"}API Reference
Every public TEASE endpoint — parameters, request and response schemas, and code samples — generated from the OpenAPI spec.
Mint an API key
Mints a new API key and returns the full `al_live_*` bearer token EXACTLY ONCE in the response — it is never retrievable again, so store it immediately. Requires a write-scoped key (owner write access).