Overview
The WallStreetBets API gives you real-time sentiment data extracted from Reddit's r/WallStreetBets community, showing which stocks are being discussed and whether the mood is bullish or bearish. It requires no authentication, making it a quick way to add social sentiment signals to a finance app. The data is refreshed frequently so you can track trending tickers as discussions evolve.
Beginner Tip
Sentiment from Reddit is a social signal, not financial advice — combine it with price data or fundamentals before drawing conclusions.
Available Data
The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.
Example Response
Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.
{
"status": "success",
"data": {
"result": "Data from WallstreetBets",
"description": "WallstreetBets Stock Comments Sentiment Analysis",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
ticker Stock ticker symbol mentioned in the posts (e.g., GME, AMC). sentiment Aggregated sentiment label: Bullish, Bearish, or Neutral. mentions Number of times this ticker appeared in recent posts. sentiment_score Numeric sentiment score, typically between -1 (most bearish) and 1 (most bullish). Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://dashboard.nbshare.io/api/v1/apps/reddit/top-stocks/?count=10";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Metadata Score Breakdown
Estimated from metadata — endpoint not independently tested
Metadata estimate · endpoint not independently tested
Technical Specifications
Related Tags
Similar APIs
View All →Binlist
⭐ Beginner's PickBinlist gives you free access to a database of Bank Identification Numbers (BINs), the first 6-8 digits of any credit or debit card number that identify the issuing bank and card type.
Econdb
⭐ Beginner's PickEcondb provides free access to global macroeconomic data including GDP, inflation, unemployment, and hundreds of other economic indicators from official sources like central banks and statistical agencies.
Fed Treasury
⭐ Beginner's PickThe U.S.
Indian Mutual Fund
⭐ Beginner's PickThe Indian Mutual Fund API gives you free access to the complete history of all mutual funds registered in India.
Portfolio Optimizer
⭐ Beginner's PickPortfolio Optimizer is a free REST API that helps you analyze and optimize investment portfolios using advanced mathematical models.