TEASEDocs
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

GET
/api/admin/api-keys
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"}