Verify a list of factual claims against document text. Uses a quality AI model with citation-level evidence. Use after document.extract_text or url.extract when you need to validate specific factual assertions. For open-ended questions about a document, use url.qa instead. For multi-document investigation, use collection.ask.
Typical workflow: document.extract_text/url.extract → document.check_claims.
Returns: {
claims: [{ claim, status: "supported"|"contradicted"|"not_found", evidence: { quote, paragraphs[] }, confidence: "high"|"medium"|"low" }],
truncated: boolean
}
Example prompts:
- "Check whether this contract mentions a liability cap of $1M."
- "Verify these claims against the document: [claims list]."
- "Does the report actually say revenue grew 23%?"
Connector