Skip to main content
DELETE
/
api
/
admin
/
api-keys
Revoke API Key
curl --request DELETE \
  --url https://otel.logclaw.ai/api/admin/api-keys \
  --header 'Content-Type: application/json' \
  --header 'x-logclaw-api-key: <api-key>' \
  --data '
{
  "id": "key_abc123"
}
'
{
  "status": "ok",
  "revokedId": "key_abc123"
}

Authorizations

x-logclaw-api-key
string
header
required

Your project API key (starts with lc_proj_)

Body

application/json
id
string
required

The key ID to revoke

Example:

"key_abc123"

Response

Key revoked

status
string
revokedId
string