What stocks and crypto Reddit is talking about most over the last 24h, by mention volume a
What stocks and crypto Reddit is talking about most over the last 24h, by mention volume across the busiest Reddit money subreddits (r/wallstreetbets, r/stocks, r/CryptoCurrency, r/Bitcoin, etc.). Each ticker carries mentions, upvotes, and 24h change in rank and mentions; covered subreddits are listed per response. ?filter=stocks|crypto|all (default all), ?page=. From x402stock
10000 (raw units)
price
5
calls / 30d
5
unique payers
2026-09-14
updated
Provider
x402stock.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3070Fbb3803819fB5BdfE9286fdc6325A877fA85",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"filter": "stocks",
"page": 1
},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-06-01T12:00:00.000Z",
"communities": [
"r/wallstreetbets",
"r/stocks",
"r/options",
"r/investing",
"r/Daytrading",
"r/SPACs",
"r/WallStreetbetsELITE",
"r/Wallstreetbetsnew"
],
"count": 928,
"filter": "stocks",
"page": 1,
"pages": 10,
"platform": "reddit",
"results": [
{
"mentions": 250,
"mentions_24h_ago": 59,
"mentions_change": 191,
"mentions_change_percent": 323.7,
"name": "NVIDIA",
"rank": 1,
"rank_24h_ago": 4,
"rank_change": 3,
"ticker": "NVDA",
"upvotes": 2133
},
{
"mentions": 231,
"mentions_24h_ago": 45,
"mentions_change": 186,
"mentions_change_percent": 413.3,
"name": "SPDR S&P 500 ETF Trust",
"rank": 2,
"rank_24h_ago": 9,
"rank_change": 7,
"ticker": "SPY",
"upvotes": 915
}
],
"source": "x402stock",
"window": "24h"
},
"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": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"filter": {
"default": "all",
"enum": [
"all",
"stocks",
"crypto"
],
"type": "string"
},
"page": {
"default": 1,
"exclusiveMinimum": 0,
"maximum": 100,
"type": "integer"
}
},
"required": [
"filter",
"page"
],
"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"
},
"communities": {
"items": {
"type": "string"
},
"type": "array"
},
"count": {
"type": "number"
},
"filter": {
"enum": [
"all",
"stocks",
"crypto"
],
"type": "string"
},
"page": {
"type": "number"
},
"pages": {
"type": "number"
},
"platform": {
"const": "reddit",
"type": "string"
},
"results": {
"items": {
"additionalProperties": false,
"properties": {
"mentions": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"mentions_24h_ago": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"mentions_change": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"mentions_change_percent": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"name": {
"type": "string"
},
"rank": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"rank_24h_ago": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"rank_change": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"ticker": {
"type": "string"
},
"upvotes": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
}
},
"required": [
"rank",
"ticker",
"name",
"mentions",
"upvotes",
"rank_24h_ago",
"mentions_24h_ago",
"mentions_change",
"mentions_change_percent",
"rank_change"
],
"type": "object"
},
"type": "array"
},
"source": {
"const": "x402stock",
"type": "string"
},
"window": {
"const": "24h",
"type": "string"
}
},
"required": [
"source",
"as_of",
"platform",
"filter",
"window",
"communities",
"page",
"pages",
"count",
"results"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402stock.xyz/api/v1/trending/reddit" # -> 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/trending/reddit");
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/trending/reddit")
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/5248.json, and this resource appears in /discovery/resources and /discovery/search.