Skip to main content
DELETE
/
v1
/
keys
/
{key_id}
curl -X DELETE https://api.chowder.dev/v1/keys/key_9f8a7b6c \
  -H "Authorization: Bearer chd_sk_your_org_key"
# No content
Revoke an API key so it can never be used again. This is immediate and irreversible — any request using this key will start failing right away. If you just need to rotate a key, create a new one first, update your services, then revoke the old one.

Authorization

Requires an organization-level API key in the Authorization header.

Path Parameters

key_id
string
required
The ID of the key to revoke.

Response

Returns 204 No Content on success. No response body.
curl -X DELETE https://api.chowder.dev/v1/keys/key_9f8a7b6c \
  -H "Authorization: Bearer chd_sk_your_org_key"
# No content