Free JSON endpoints for the Fear & Greed Index. Use in dashboards, trading tools, research, or any project. No API key required.
https://feargreedchart.com/api/
date,score columns. Useful for Excel, Google Sheets, or data analysis workflows.Country-specific Fear & Greed APIs run on dedicated subdomains. Each has its own component set and data shape โ see the linked docs for the full schema.
?action=kospi, ?action=kospi-history, ?action=kospi-history.csv?action=nikkei, ?action=nikkei-rates, ?action=nikkei-history, ?action=nikkei-flow, ?action=health?action=nifty, ?action=nifty-history, ?action=nifty-history.csv// Get today's score fetch('https://feargreedchart.com/api/?action=all') .then(r => r.json()) .then(data => { const score = data.score.score; const label = score <= 20 ? 'Extreme Fear' : score <= 40 ? 'Fear' : score <= 60 ? 'Neutral' : score <= 80 ? 'Greed' : 'Extreme Greed'; console.log(`Fear & Greed: ${score} โ ${label}`); });
import requests r = requests.get("https://feargreedchart.com/api/?action=all") data = r.json() score = data["score"]["score"] for c in data["score"]["components"]: print(f"{c['name']:12s} {c['val']:3d} ({c['wt']}%) {c['raw']}") print(f"\nComposite: {score}")