Skip to main content

fact_check.status_changed

Sent when a fact-check status changes

Event Data Schema

The data field in the webhook payload contains the following structure:

FieldTypeRequiredDescription
factCheckIdstring (uuid)YesID of the fact-check
statusstringYesNew status value
finalDeterminationanyNoFinal accuracy determination
finalConfidenceanyNoConfidence score (0-1)
completedAtanyNoCompletion timestamp

Example Payload

Complete example of a webhook payload for this event type:

{
"eventType": "fact_check.status_changed",
"timestamp": 1704123456789,
"data": {
"factCheckId": "123e4567-e89b-12d3-a456-426614174000",
"status": "completed",
"finalDetermination": "mostly_true",
"finalConfidence": 0.85,
"completedAt": "2024-01-15T10:35:00Z"
}
}

For information about HTTP headers, security verification, and retry policies, see the Webhooks Overview.