Claim Verification

Fact-check any statement against multiple authoritative sources. SignalStack cross-references the claim across Wikipedia, Google Fact Check Tools, Semantic Scholar, GDELT news database, and general web search to produce a trust score and evidence chain.

Endpoint

Code
POST https://signal-stack-ten.vercel.app/v1/verify/claim

Request parameters

ParameterTypeRequiredDescription
claimstringYesThe statement to verify (max 2,000 characters)
sourcesstring[]NoSources to query: web, wikipedia, google_fact_check,semantic_scholar, gdelt (default: all)
languagestringNoISO 639-1 language code (default: en)
max_evidenceintegerNoMaximum evidence items to return (1–20, default: 5)

Response schema

FieldTypeDescription
idstringUnique request identifier
trust_scorenumberOverall confidence in the claim (0.0–1.0)
verdictstringtrue, false, unverifiable, conflicting
evidencearrayList of supporting and refuting sources
dimensionsobjectPer-dimension trust sub-scores
latency_msnumberProcessing time in milliseconds
credits_usednumberCredits consumed by this request

Request example

Code
{
  "claim": "The Great Wall of China is visible from space with the naked eye",
  "sources": ["web", "wikipedia", "google_fact_check"],
  "language": "en",
  "max_evidence": 5
}

Response example

Code
{
  "id": "vrf_clm_g3h4i5j6",
  "trust_score": 0.04,
  "verdict": "false",
  "evidence": [
    {
      "source": "Wikipedia",
      "url": "https://en.wikipedia.org/wiki/Great_Wall_of_China",
      "snippet": "The Great Wall of China cannot be seen from space with the naked eye.",
      "supports_claim": false,
      "authority_score": 0.92,
      "retrieved_at": "2025-01-22T12:00:00Z"
    },
    {
      "source": "Google Fact Check",
      "url": "https://toolbox.google.com/factcheck/explorer/...",
      "snippet": "Claim: Great Wall visible from space. Rating: False.",
      "supports_claim": false,
      "authority_score": 0.88,
      "retrieved_at": "2025-01-22T12:00:01Z"
    },
    {
      "source": "web",
      "url": "https://science.nasa.gov/great-wall-space-myth",
      "snippet": "NASA astronauts confirm the Great Wall is not visible from orbit without aid.",
      "supports_claim": false,
      "authority_score": 0.90,
      "retrieved_at": "2025-01-22T12:00:02Z"
    }
  ],
  "dimensions": {
    "source_authority": 0.90,
    "cross_reference": 0.95,
    "recency": 0.82,
    "llm_analysis": 0.97
  },
  "latency_ms": 156,
  "credits_used": 1
}

Code examples

Python

Code
import signalstack

client = signalstack.SignalStack(api_key="ssk_live_...")

result = client.verify.claim(
    claim="The Great Wall of China is visible from space",
    sources=["web", "wikipedia", "google_fact_check"],
)

print(f"Verdict: {result.verdict}")
print(f"Trust score: {result.trust_score}")
for evidence in result.evidence:
    print(f"  {evidence.source}: {evidence.snippet}")

cURL

Code
curl -X POST https://signal-stack-ten.vercel.app/v1/verify/claim   -H "Authorization: Bearer $SIGNALSTACK_API_KEY"   -H "Content-Type: application/json"   -d '{
    "claim": "The Great Wall of China is visible from space with the naked eye",
    "sources": ["web", "wikipedia", "google_fact_check"]
  }'

TypeScript

Code
import { SignalStack } from "@signalstack/sdk"

const client = new SignalStack({ apiKey: process.env.SIGNALSTACK_API_KEY! })

const result = await client.verify.claim({
  claim: "The Great Wall of China is visible from space with the naked eye",
  sources: ["web", "wikipedia", "google_fact_check"],
})

console.log(`Verdict: ${result.verdict}`)
console.log(`Trust score: ${result.trustScore}`)

Next steps