All datasets

Crypto Fear & Greed signals (crypto sentiment regimes)

Daily crypto-sentiment signals from the alternative.me Crypto Fear and Greed Index (2018-02 ->, 0–100): 7-day and 30-day momentum, 30-day change volatility, 3-sigma anomaly flags, naive-drift forecasts, extreme-fear (<=25) and extreme-greed (>=75) regime flags, a 90-day sentiment z-score, and the provider's own classification. The crypto-sentiment companion to fng-signals (CNN stock-market Fear & Greed) — crypto runs its own sentiment cycle, often leading equities. Keyless JSON API; commercial redistribution not explicitly granted (marked unclear). Global market, rows labeled WLD. Raw series: alternative.me (tobieskrambs GmbH).

Source: Crypto Fear & Greed Signals (derived)3,152 rowsUpdated: 9/22/2026
cryptobitcoinsentimentfear-and-greedcontrarianmarket-regimemomentumanomaly-detectionforecastingsignalskeyless

Quality

92.4

Attribution

Crypto Fear and Greed Index by alternative.me (tobieskrambs GmbH); signals by Frontier Data Hub

Schema

ColumnTypeDescription
datestringObservation date derived from the API's timestamp field (Unix seconds, UTC; YYYY-MM-DD, daily).
countrystring
country_codestring
series_idstringCFG: the Crypto Fear and Greed Index from alternative.me.
series_labelstringCrypto Fear and Greed Index (alternative.me): aggregates volatility, market momentum and volume, social media, surveys, Bitcoin dominance, and Google Trends into one gauge; 0 = extreme fear, 100 = extreme greed.
valuefloatIndex value on the 0–100 scale from the API's value field: 0 = extreme fear, 100 = extreme greed. Extreme fear has historically signalled buying opportunities for contrarians; extreme greed warns the market may be overheating.
sentiment_scorefloat
sentiment_labelstringThe API's value_classification field: one of Extreme Fear, Fear, Neutral, Greed, Extreme Greed.
momentum_3mfloat
momentum_7dfloat
volatility_30dfloat
anomaly_flaginteger
forecast_1mfloat
extreme_fear_flaginteger
extreme_greed_flaginteger
sentiment_z_90dfloat

Sample rows

datecountrycountry_codeseries_idseries_labelvaluesentiment_scoresentiment_labelmomentum_3mmomentum_7dvolatility_30danomaly_flagforecast_1mextreme_fear_flagextreme_greed_flagsentiment_z_90d
2018-02-01WorldWLDCFGCrypto Fear and Greed Index (alternative.me, 0-100)300.3Fear000
2018-02-02WorldWLDCFGCrypto Fear and Greed Index (alternative.me, 0-100)150.15Extreme Fear010
2018-02-03WorldWLDCFGCrypto Fear and Greed Index (alternative.me, 0-100)400.4Fear000
2018-02-04WorldWLDCFGCrypto Fear and Greed Index (alternative.me, 0-100)240.24Extreme Fear010
2018-02-05WorldWLDCFGCrypto Fear and Greed Index (alternative.me, 0-100)110.11Extreme Fear010

Download sample data

Download the full sample snapshot for this dataset (sample rows, not the complete dataset).

Use with an LLM

Point any LLM at the metadata endpoint — the documentation above is machine-readable too (JSON-LD + Croissant).

cURL

curl "https://datazimuts.com/v1/datasets/crypto_fear_greed_signals/crypto_fear_greed_index_signals" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/crypto_fear_greed_signals/crypto_fear_greed_index_signals").json()
print(ds["title"], ds["rows"], "rows")

# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
    print(row)

API endpoint: https://datazimuts.com/v1/datasets/crypto_fear_greed_signals/crypto_fear_greed_index_signals

Tip: fetch /llms.txt for the full machine-readable catalog.