Webhooks
Test Webhook
Send a test event to verify your webhook endpoint is reachable and signature verification works.
POST
Test Webhook
Test Webhook
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Welcome to Theo Docs — the AI orchestration API.
Send a test event to verify your webhook endpoint is reachable and signature verification works.
curl --request POST \
--url https://api.example.com/api/v1/webhooks/{id}/testcompletion.created event with _test: true in the data payload. The delivery uses the same HMAC signing, SSRF checks, and retry logic as real events.
curl -X POST https://www.hitheo.ai/api/v1/webhooks/WEBHOOK_ID/test \
-H "Authorization: Bearer $THEO_API_KEY"
{ "sent": true }
{
"id": "evt_abc123...",
"type": "completion.created",
"created": "2026-04-15T12:00:00.000Z",
"data": {
"_test": true,
"message": "This is a test event from Theo. If you received it, your webhook is working!"
}
}
Was this page helpful?
curl --request POST \
--url https://api.example.com/api/v1/webhooks/{id}/test