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.// 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}")