fact_check.failed
Sent when a fact-check operation fails
Status: Planned
This event type is reserved but not currently emitted by the platform. You can subscribe a webhook to it without errors, but you will not receive deliveries until emission is implemented. The schema below is the contract you can rely on once it ships.
Event Data Schema
The data field in the webhook payload contains the following structure:
| Field | Type | Required | Description |
|---|---|---|---|
factCheckId | string (uuid) | Yes | ID of the fact-check |
status | string | Yes | Status of the fact-check |
errorMessage | string | Yes | Error description |
failedAt | string (date-time) | Yes | Failure timestamp |
Example Payload
Complete example of a webhook payload for this event type. The top-level id is the envelope identifier — stable across retries; use it as your idempotency key. See Webhooks Overview for the full envelope schema.
{
"eventType": "fact_check.failed",
"timestamp": 1704123456789,
"id": "456e7890-a12b-34c5-d678-901234567890",
"data": {
"factCheckId": "123e4567-e89b-12d3-a456-426614174000",
"status": "failed",
"errorMessage": "Unable to extract claims from content",
"failedAt": "2024-01-15T10:30:00Z"
}
}
For information about HTTP headers, security verification, and retry policies, see the Webhooks Overview.