Skip to main content
DELETE
/
api-keys
/
{key_id}
{
  "deleted": true,
  "api_key_id": "<string>",
  "deleted_at": {}
}

Overview

Deletes an API key, immediately revoking access for any applications using it. This action is irreversible.

Path Parameters

key_id
string
required
Unique identifier of the API key to delete

Response

deleted
boolean
required
Whether the key was successfully deleted
api_key_id
string
required
ID of the deleted key
deleted_at
datetime
required
Deletion timestamp

Examples

curl -X DELETE https://api.judge.example.com/api-keys/key_abc123 \
  -H "Authorization: Bearer YOUR_API_KEY"