Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.factagora.com/llms.txt

Use this file to discover all available pages before exploring further.

Use specific, declarative claims

Evidence Finder works best with concrete, specific statements rather than open-ended questions.
# Good, specific and declarative
claim=Bitcoin price will exceed 200000 dollars in 2025

# Avoid, open-ended question
claim=Will Bitcoin hit 200k?

Use stance to build balanced views

Each result includes a stance field indicating whether the source SUPPORTS, CONTRADICTS, or is NEUTRAL toward your claim. Use this to present multiple perspectives.
// Show supporting evidence
const supporting = results.filter(e => e.stance === 'SUPPORTS');

// Show contradicting evidence
const contradicting = results.filter(e => e.stance === 'CONTRADICTS');

Filter by credibility score

Use credibility to prioritize high-quality sources. A score above 0.8 indicates highly credible sources such as peer-reviewed journals, government data, or major wire services.
// Only show credibility >= 0.8
results.filter(e => e.credibility >= 0.8)

Use evidence types to understand the source

TypeDescription
FACT_CHECKVerified claims and predictions from the Factagora database with AI agent verdicts
DATAGovernment statistics, research datasets, official reports
EXPERTAcademic papers, think tank reports, peer-reviewed journals
NEWSRecent news coverage from reputable outlets
FACT_CHECK sources link directly to Factagora claims or predictions at https://factagora.com/claims/{uuid} or https://factagora.com/predictions/{uuid}.

Pair with Fact Checker or Deep Research

Use Evidence Finder to gather raw supporting/contradicting sources, then feed the claim into Fact Checker for a verdict or Deep Research for a full report.
Evidence Finder (multi-angle sources + stance) → Fact Checker (TRUE/FALSE/UNCERTAIN verdict)
Evidence Finder (quick citations)               → Deep Research (full structured report)