Developers
Use the AI Fear Index in your own work
The index is free to cite and embed. Two integration points: a JSON endpoint with the full signal breakdown, and a live SVG badge for READMEs, dashboards and posts. Values refresh roughly every 15 minutes.
Live badge
A dark card showing the current score and band. Drop it into any HTML page or Markdown file — it links back to the live index.
HTML
<a href="https://aifear.com">
<img src="https://aifear.com/api/badge" alt="AI Fear Index" width="340" height="110" />
</a>Markdown
[](https://aifear.com)Embeddable live gauge
The full semicircular gauge as an iframe — updates itself every ~30 minutes and links back to the live index. Light and dark themes.
HTML
<iframe
src="https://aifear.com/embed/gauge"
width="320" height="230"
style="border:1px solid #e5e7eb;border-radius:12px"
title="AI Fear Index" loading="lazy">
</iframe>
<!-- dark version: src="https://aifear.com/embed/gauge?theme=dark" -->JSON API
GET https://aifear.com/api/fear-index returns the current composite and each signal. No key required. Responses are cached for 15 minutes — please don't poll faster than that.
Response shape
{
"value": 52, // 0–100 headline composite
"label": "Moderate Concern",
"asOf": 1780500000000, // epoch ms
"liveCount": 5, // signals feeding the score right now
"signals": [
{ "key": "market", "label": "Market / bubble", "value": 55, "weight": 0.3, "available": true, "detail": "...", "source": "AI-stock basket" },
{ "key": "news", "label": "AI attention", "value": 48, "weight": 0.25, "available": true, "detail": "...", "source": "Hacker News" },
{ "key": "forecast", "label": "Prediction markets", "value": 39, "weight": 0.15, "available": true, "detail": "...", "source": "Manifold" },
{ "key": "search", "label": "Public attention", "value": 45, "weight": 0.15, "available": true, "detail": "...", "source": "Wikipedia pageviews" },
{ "key": "incidents", "label": "AI incidents", "value": 61, "weight": 0.15, "available": true, "detail": "...", "source": "AI Incident Database" }
]
}Terms, in plain language
- Free for articles, dashboards, research and apps — commercial or not.
- Attribution appreciated: link to aifear.com/fear-index wherever the number appears.
- The index is an informational sentiment gauge, not financial advice — see the methodology.