# Test Webhook

Source: https://www.ranked.ai/developers/api-reference/webhooks/test

`POST https://app.ranked.ai/api/v1/webhooks/{webhookId}/test`

> Send a test payload to verify your webhook endpoint

Sends a test payload to the webhook URL to verify connectivity and signature verification.

- `webhookId` (path, string, required): Webhook subscription UUID

**Request**

```bash cURL
curl -X POST "https://app.ranked.ai/api/v1/webhooks/{webhookId}/test" \
  -H "Authorization: Bearer rk_live_your_api_key"
```

**Response**

```json 200
{
  "success": true,
  "data": {
    "success": true,
    "message": "Test webhook delivered successfully",
    "status_code": 200
  }
}
```

The test payload sent to your URL looks like:

```json
{
  "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.
