Reddit APIs
Get top 50 stocks discussed on Reddit subeddit - Wallstreetbets
curl -XGET 'https://dashboard.nbshare.io/api/v1/apps/reddit'
You would get following JSON response...
[
{
"no_of_comments": 179,
"sentiment": "Bullish",
"sentiment_score": 0.13,
"ticker": "GME"
},
{
"no_of_comments": 37,
"sentiment": "Bullish",
"sentiment_score": 0.159,
"ticker": "AMC"
},
{
"no_of_comments": 17,
"sentiment": "Bullish",
"sentiment_score": 0.22,
"ticker": "PLTR"
},
...
]
Note - The list gets updated every 15 mins. Every 15 minutes, algorithm takes in to account all the comments till that point of time and re-calculates the sentiment. The sentiment reflects the daily sentiment.
Questions - Contact me at [email protected]