The current US stock-market Fear & Greed index (0–100, CNN-style) with its sentiment ratin
The current US stock-market Fear & Greed index (0–100, CNN-style) with its sentiment rating and all five weighted components — volatility, momentum, put/call, safe-haven demand, junk-bond demand — each with value, weight, and reading. Includes the last 30 days of scores and a backtest of S&P 500 forward returns by sentiment zone. A one-call read of market mood. From x402stock
20000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-16
updated
Provider
x402stock.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3070Fbb3803819fB5BdfE9286fdc6325A877fA85",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-06-05T00:00:00.000Z",
"backtest": [
{
"entries": 31,
"label": "Extreme Fear (0–20)",
"periods": [
{
"avg_return_percent": 4.37,
"best_percent": 23.07,
"period": "1 Month",
"samples": 30,
"win_rate_percent": 83,
"worst_percent": -11.68
}
],
"zone": "extreme_fear"
}
],
"components": [
{
"description": "VIX vs 20-day average",
"detail": "VIX 15.4 / MA20 16.9",
"name": "VOLATILITY",
"value": 63,
"weight": 25
},
{
"description": "S&P 500 vs 125-day MA",
"detail": "SPY 757 / MA125 695",
"name": "MOMENTUM",
"value": 77,
"weight": 25
}
],
"index": "us_stock",
"rating": "Greed",
"recent": [
{
"date": "2026-06-04",
"score": 64
}
],
"score": 69,
"source": "x402stock"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"as_of": {
"type": "string"
},
"backtest": {
"items": {
"additionalProperties": false,
"properties": {
"entries": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"label": {
"type": "string"
},
"periods": {
"items": {
"additionalProperties": false,
"properties": {
"avg_return_percent": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"best_percent": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"period": {
"type": "string"
},
"samples": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"win_rate_percent": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"worst_percent": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
}
},
"required": [
"period",
"avg_return_percent",
"win_rate_percent",
"best_percent",
"worst_percent",
"samples"
],
"type": "object"
},
"type": "array"
},
"zone": {
"type": "string"
}
},
"required": [
"zone",
"label",
"entries",
"periods"
],
"type": "object"
},
"type": "array"
},
"components": {
"items": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"detail": {
"type": "string"
},
"name": {
"type": "string"
},
"value": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"weight": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
}
},
"required": [
"name",
"value",
"weight",
"description",
"detail"
],
"type": "object"
},
"type": "array"
},
"index": {
"const": "us_stock",
"type": "string"
},
"rating": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"recent": {
"items": {
"additionalProperties": false,
"properties": {
"date": {
"type": "string"
},
"score": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
}
},
"required": [
"date",
"score"
],
"type": "object"
},
"type": "array"
},
"score": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"source": {
"const": "x402stock",
"type": "string"
}
},
"required": [
"source",
"as_of",
"index",
"score",
"rating",
"components",
"recent",
"backtest"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402stock.xyz/api/v1/fear-greed" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402stock.xyz/api/v1/fear-greed");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://x402stock.xyz/api/v1/fear-greed")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/5262.json, and this resource appears in /discovery/resources and /discovery/search.