Skip to main content
POST
/
webhooks
/
{webhookId}
/
test
curl -X POST "https://app.ranked.ai/api/v1/webhooks/{webhookId}/test" \
  -H "Authorization: Bearer rk_live_your_api_key"
{
  "success": true,
  "data": {
    "success": true,
    "message": "Test webhook delivered successfully",
    "status_code": 200
  }
}

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.

Sends a test payload to the webhook URL to verify connectivity and signature verification.
webhookId
string
required
Webhook subscription UUID
curl -X POST "https://app.ranked.ai/api/v1/webhooks/{webhookId}/test" \
  -H "Authorization: Bearer rk_live_your_api_key"
{
  "success": true,
  "data": {
    "success": true,
    "message": "Test webhook delivered successfully",
    "status_code": 200
  }
}
The test payload sent to your URL looks like:
{
  "event": "content.created",
  "timestamp": "2026-05-16T01:06:30.000Z",
  "project_id": "test-project-id",
  "data": {
    "test": true,
    "message": "This is a test webhook from Ranked AI"
  }
}
It includes the same X-Webhook-Signature header as real deliveries, signed with your subscription’s secret.