Distribution toolkit

Embed Claimer

Add source-backed claim assessment cards to your website, blog, or article. Each embed links back to the full evidence chain on Claimer.

Option 1: Embed card

Shows a generated claim summary card with attribution score, veracity score, source counts, and a link back to the full evidence chain.

<iframe
  src="https://claimer-org.github.io/claimer/widgets/claims/openai-gpt-4o-launch.html"
  width="100%" height="340"
  style="border:0;border-radius:10px;max-width:620px;"
  title="Claimer claim assessment"
  loading="lazy">
</iframe>

Replace openai-gpt-4o-launch with any claim ID from the JSON feed or a Claimer claim URL.

Open JSON feed
technology

Nature published a registered report on Bluesky feeds and social feed algorithms

82% veracity / 2 support / 0 challenge

technology

California issued Executive Order N-6-26 on AI workforce impacts

80% veracity / 1 support / 0 challenge

ai

OpenAI said it added SynthID image provenance signals and previewed a public verification tool

78% veracity / 1 support / 0 challenge

A styled link button that directs readers to the full claim page. Lighter weight than the iframe.

<a href="https://claimer-org.github.io/claimer/claims/openai-gpt-4o-launch/"
   target="_blank" rel="noopener noreferrer"
   style="display:inline-flex;align-items:center;gap:6px;
   padding:8px 16px;border-radius:8px;
   background:#111827;color:#e8ecf4;
   font-family:system-ui;font-size:14px;
   text-decoration:none;border:1px solid rgba(255,255,255,0.1);">
  View claim assessment on Claimer
</a>

Option 3: data feeds

All seed claim data is exported as static JSON at build time, and the latest claims are available as RSS for feed readers and directories.

fetch("https://claimer-org.github.io/claimer/api/claims.json")
  .then((response) => response.json())
  .then((pack) => {
    console.log(pack.count + " Claimer claims available");
    console.log(pack.claims[0].embedUrl);
  });

Embed guidelines

Do

  • Use embeds alongside your own original reporting
  • Link to the full claim page for complete evidence chains
  • Disclose that scores are community assessments, not verdicts
  • Keep the embed visible and unobstructed

Don't

  • Modify Claimer scores or labels in your display
  • Present community assessments as definitive fact-checks
  • Strip attribution or source links from embeds
  • Use embeds to target private individuals

Need a custom integration?

Claimer is open-source and community-driven. Reach out with custom embed requests or data partnership proposals.