Documentation Index
Fetch the complete documentation index at: https://dev.ranked.ai/llms.txt
Use this file to discover all available pages before exploring further.
GET - Get subscription details
Webhook subscription UUID
curl "https://app.ranked.ai/api/v1/webhooks/{webhookId}" \
-H "Authorization: Bearer rk_live_your_api_key"
PATCH - Update subscription
Requires a Read + Write API key.
Updated webhook URL (must be HTTPS)
Enable or disable the subscription
curl -X PATCH "https://app.ranked.ai/api/v1/webhooks/{webhookId}" \
-H "Authorization: Bearer rk_live_your_write_key" \
-H "Content-Type: application/json" \
-d '{ "is_active": false }'
DELETE - Delete subscription
Requires a Read + Write API key.
curl -X DELETE "https://app.ranked.ai/api/v1/webhooks/{webhookId}" \
-H "Authorization: Bearer rk_live_your_write_key"