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:

Method Example
Bearer token (recommended) Authorization: Bearer YOUR_API_KEY
X-API-Key header X-API-Key: YOUR_API_KEY
Query parameter ?apiKey=YOUR_API_KEY
Legacy query parameter ?token=YOUR_API_KEY
Parameter Type Required Description
symbol string Yes Stock ticker symbol (e.g., TSLA, GME)
Parameter Type Required Description
startDate string No Start date (YYYY-MM-DD)
endDate string No End date (YYYY-MM-DD)
limit integer No Maximum 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"
}
}
Field Type Description
success boolean Whether the request was successful
data.symbol string Stock ticker symbol
data.name string Company name
data.data array Array of mention count objects
meta.timestamp string Response timestamp (ISO 8601)
Field Type Description
date string Snapshot timestamp (ISO 8601)
subreddit string Subreddit name, or _all for aggregate total across all subreddits
mentions integer Number of ticker mentions in this snapshot
Code Error Description
400 Bad Request Invalid symbol or parameters
401 Unauthorized Invalid or missing API key
403 Forbidden Authenticated, but not authorized to access this resource
404 Not Found Ticker not found
429 Too Many Requests Rate limit exceeded — wait and retry
500 Internal Server Error Server-side error