Corroborate a claim
corroborate_claimChecks a factual claim against news sources to determine if it is independently reported, returning a corroboration verdict, source count, and evidence.
Instructions
Given a factual/news claim, returns how INDEPENDENTLY it is being reported. Use before relying on a current-event claim. Output: verdict (CONFIRMED = 2+ independent origins | SINGLE_SOURCE | UNCORROBORATED), count of independent story origins (wire/syndication echoes collapse to one), per-source evidence (outlet, domain, url, date), confidence 0-1, coverage flag, honest caveats. Measures REPORTING corroboration, not truth — no stance detection, so a distorted claim about a real event may still show coverage; verify specifics against the returned sources. Keyless, read-only, deterministic; if all sources are unreachable it errors rather than returning a false negative.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| claim | Yes | The claim to check, as a plain declarative sentence | |
| max_sources | No | Max evidence sources returned (default 8) | |
| window_days | No | Lookback window in days (default 7) |