Skip to content

Reddit Mentions API

Retrieve ticker mention counts across Reddit investing communities. Track how often a stock is discussed on WallStreetBets, r/stocks, and other subreddits with data collected every 4 hours.

GET /v2/reddit-mentions/{symbol}

The API supports multiple authentication methods:

MethodExample
Bearer token (recommended)Authorization: Bearer YOUR_API_KEY
X-API-Key headerX-API-Key: YOUR_API_KEY
Query parameter?apiKey=YOUR_API_KEY
Legacy query parameter?token=YOUR_API_KEY
ParameterTypeRequiredDescription
symbolstringYesStock ticker symbol (e.g., TSLA, GME)
ParameterTypeRequiredDescription
startDatestringNoStart date (YYYY-MM-DD)
endDatestringNoEnd date (YYYY-MM-DD)
limitintegerNoMaximum number of results to return (1-500)
from finbrain import FinBrainClient
fb = FinBrainClient(api_key="YOUR_API_KEY")
df = fb.reddit_mentions.ticker("TSLA",
date_from="2026-03-01",
date_to="2026-03-16",
as_dataframe=True)
print(df)
{
"success": true,
"data": {
"symbol": "TSLA",
"name": "Tesla, Inc.",
"data": [
{
"date": "2026-03-16T14:00:00.000Z",
"subreddit": "_all",
"mentions": 57
},
{
"date": "2026-03-16T14:00:00.000Z",
"subreddit": "wallstreetbets",
"mentions": 45
},
{
"date": "2026-03-16T14:00:00.000Z",
"subreddit": "stocks",
"mentions": 12
}
]
},
"meta": {
"timestamp": "2026-03-17T15:05:59.853Z"
}
}
FieldTypeDescription
successbooleanWhether the request was successful
data.symbolstringStock ticker symbol
data.namestringCompany name
data.dataarrayArray of mention count objects
meta.timestampstringResponse timestamp (ISO 8601)
FieldTypeDescription
datestringSnapshot timestamp (ISO 8601)
subredditstringSubreddit name, or _all for aggregate total across all subreddits
mentionsintegerNumber of ticker mentions in this snapshot
CodeErrorDescription
400Bad RequestInvalid symbol or parameters
401UnauthorizedInvalid or missing API key
403ForbiddenAuthenticated, but not authorized to access this resource
404Not FoundTicker not found
429Too Many RequestsRate limit exceeded — wait and retry
500Internal Server ErrorServer-side error