extractr docs
Management

List API keys

GET
/manage/keys

Authorization

BearerAuth
AuthorizationBearer <token>

Clerk session token (dashboard/management routes). In local dev mode use the X-Dev-User header instead.

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/manage/keys"
{  "keys": [    {      "id": "key_9f2c4b1a",      "name": "Production",      "prefix": "ext_live_a1b",      "createdAt": "2019-08-24T14:15:22Z",      "lastUsedAt": "2019-08-24T14:15:22Z",      "revoked": true    }  ]}
{  "error": {    "code": "invalid_api_key",    "message": "The provided API key is invalid or has been revoked."  }}