Skip to main content
DELETE
/
user
/
api_key
/
{api_key}
Delete API key
curl --request DELETE \
  --url https://api.videodb.io/user/api_key/{api_key} \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "message": "Operation successful"
}
Revoke an API key to prevent it from being used for future authentication requests. This action is permanent.
  • Deleting an API key is permanent and irreversible
  • Any applications using this key will immediately lose access
  • Ensure no active integrations depend on the key before deleting
  • Any ongoing API calls using this key will fail after deletion

Authorizations

x-access-token
string
header
required

API key for authentication (sk-xxx format)

Path Parameters

api_key
string
required
Example:

"sk-xxx"

Response

200 - application/json

API key deleted

success
boolean
Example:

true

message
string
Example:

"Operation successful"