Verify disinformation in text
This endpoint allows you to verify the accuracy of a single text input by cross-referencing it with Factagora's knowledge graph. It returns a detailed verification result indicating the truthfulness.
curl -X POST "https://api.factagora.com/v1/deepverify/disinformation" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"text": "AI models generate completely unbiased results in all cases."
}'{
"verified": false,
"confidence_score": 0.2,
"disinformation_tags": ["bias_detected", "inaccuracy"],
"message": "The claim contains bias and has a low confidence score."
}Last updated