Nature published a registered report on Bluesky feeds and social feed algorithms
82% veracity / 2 support / 0 challenge
Distribution toolkit
Add source-backed claim assessment cards to your website, blog, or article. Each embed links back to the full evidence chain on Claimer.
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.
82% veracity / 2 support / 0 challenge
80% veracity / 1 support / 0 challenge
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>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);
});