fact_check.completed
Sent when a fact-check operation completes successfully
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 |
totalClaims | number | Yes | Total number of claims extracted |
verifiedClaims | number | Yes | Number of verified claims |
processingTimeMs | number | Yes | Processing time in milliseconds |
Example Payload
Complete example of a webhook payload for this event type:
{
"eventType": "fact_check.completed",
"timestamp": 1704123456789,
"data": {
"factCheckId": "123e4567-e89b-12d3-a456-426614174000",
"status": "completed",
"totalClaims": 5,
"verifiedClaims": 4,
"processingTimeMs": 2500
}
}
For information about HTTP headers, security verification, and retry policies, see the Webhooks Overview.