Skip to content

API keys

All endpoints on this page require the admin scope.

List keys in the tenant. The secret is only returned at creation time; this endpoint returns only prefix, label, scope mask, and timestamps.

Create a new API key.

Request

{
"label": "production-backend",
"scopes": ["check:read", "grant:write"]
}

Response 201

{
"id": "key_01HXYZ...",
"prefix": "pore_live_",
"secret": "pore_live_aB3cD4eF5...",
"label": "production-backend",
"scopes": ["check:read", "grant:write"],
"created_at": "2026-04-14T10:22:00Z"
}

The full secret is returned exactly once. Store it immediately.

Revoke a key. Effective globally at edge latency.