Skip to main content
DELETE
/
api
/
api-keys
/
{keyId}
curl -X DELETE 'https://crypto-api.yativo.com/api/api-keys/key_01HX9KZMB3F7VNQP8R2WDGT4E5' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "status": "success",
  "data": {
    "key_id": "key_01HX9KZMB3F7VNQP8R2WDGT4E5",
    "status": "revoked",
    "revoked_at": "2026-03-26T11:00:00Z"
  }
}
Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
keyId
string
required
The key ID to revoke (e.g. key_01HX9KZMB3F7VNQP8R2WDGT4E5).
Revoking a key is immediate and irreversible. Any services using this key will lose API access instantly. Ensure you have updated all dependent services before revoking.
curl -X DELETE 'https://crypto-api.yativo.com/api/api-keys/key_01HX9KZMB3F7VNQP8R2WDGT4E5' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "status": "success",
  "data": {
    "key_id": "key_01HX9KZMB3F7VNQP8R2WDGT4E5",
    "status": "revoked",
    "revoked_at": "2026-03-26T11:00:00Z"
  }
}