API ReferenceAPI KeysDelete API Key

Delete API Key

DELETE /api/v1/api-keys/{id}/

Permanently delete an API key. This immediately revokes all API access using this key.

Authentication

Requires an API key with api_keys:write scope, or a dashboard session. Pass via the X-API-Key header.

Path Parameters

ParameterTypeDescription
idstring (UUID)The unique identifier of the API key to delete.
⚠️

Deleting a key immediately revokes all API access using that key. Any integrations using this key will stop working immediately.

Response

Status: 204 No Content

No response body.

Errors

StatusDescription
401Missing or invalid API key.
403API key does not have api_keys:write scope.
404API key not found.

Code Examples

curl -X DELETE https://api.parsifyhq.com/api/v1/api-keys/a1b2c3d4-e5f6-7890-abcd-ef1234567890/ \
  -H "X-API-Key: YOUR_API_KEY"