This page walks through each of the 6 Search APIs end-to-end, request, response, and how to read the result. For full parameter specs, head to the API Reference.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.
All endpoints use the same auth:
Authorization: Bearer fag_your_api_key. Replace fag_your_api_key with your key from the Factagora dashboard.1. News Search
GET /api/v1/news/search · 1 credit · Real-time semantic news search.
Search news by meaning rather than keywords. Returns articles with publication date, source domain, and relevance score.
Response
Use
timespan to keep results fresh. Combine with sortBy=date when you want the absolute latest articles rather than the most relevant ones.2. Fact Checker
POST /api/v1/fact-checker · 2 credits · Claim verification.
Sends a claim, returns a TRUE / FALSE / UNCERTAIN verdict with a confidence score and supporting sources from the Factagora knowledge base.
Response
3. Evidence Hunter
POST /api/v1/evidence-finder · 2 credits · Evidence expansion and source discovery.
Given a claim, surfaces multi-angle evidence, each result is typed (DATA, EXPERT, NEWS, FACT_CHECK), credibility-scored, and tagged with a stance (supports / contradicts / neutral).
Response
Use
stance to balance perspectives. A claim that returns only supports-stance evidence may be under-explored, pull more results or refine the claim to surface counter-evidence.4. Deep Research
POST /api/v1/deep-research · 2 credits · Cross-source research synthesis.
Aggregates verified claims, news, and time-series events on a topic, then generates a structured report with sections and citations.
Response
Treat the summary as a draft, not a final answer. Deep Research synthesizes from multiple sources but does not replace human judgment for high-stakes decisions, always review the cited sources.
5. Timeseries
POST /api/v1/timeseries · 3 credits · Time-based information flow.
Extracts a chronological sequence of events from a URL or uploaded document (PDF/Markdown).
Response
Use
/timeseries/file for PDFs and Markdown that aren’t reachable by URL, for example, internal reports or whitepapers stored on your servers.6. Causality Graph
POST /api/v1/causality-graph · 3 credits · Cause-and-effect analysis.
Extracts a directed graph of causes and effects from a URL or document. Nodes are concepts/events; edges are causal relationships.
Response
Pair with Timeseries for full picture. Timeseries tells you when; Causality Graph tells you why, together they reconstruct an event chain end-to-end.
Summary
| API | Endpoint | What it does | Credits |
|---|---|---|---|
| News Search | GET /news/search | Real-time semantic news search | 1 |
| Fact Checker | POST /fact-checker | Verify a claim with verdict + confidence | 2 |
| Evidence Hunter | POST /evidence-finder | Multi-angle credibility-scored evidence | 2 |
| Deep Research | POST /deep-research | Cross-source synthesis with sections | 2 |
| Timeseries | POST /timeseries | Chronological event extraction | 3 |
| Causality Graph | POST /causality-graph | Cause-and-effect graph | 3 |

