API V1.0

List stocks by mentions

Call:
https://apewisdom.io/api/v1.0/filter/{filter}

List of supported filters:
all  # All subreddits combined
all-stocks #  Only subreddits focusing on stocks such as r/wallstreetbets or r/stocks
all-crypto #  Only subreddits focusing on cryptocurrencies such as r/CryptoCurrency or r/SatoshiStreetBets

4chan

CryptoCurrency
CryptoCurrencies
Bitcoin
SatoshiStreetBets
CryptoMoonShots
CryptoMarkets
stocks
wallstreetbets
options
WallStreetbetsELITE
Wallstreetbetsnew
SPACs
investing
Daytrading

Pagination

API response are split up in pages containing each 100 results. To navigate to another page use:
https://apewisdom.io/api/v1.0/filter/{filter}/page/{pageNbr}

Example

Query:
https://apewisdom.io/api/v1.0/filter/all-stocks/page/4
Response:
{
	"count":817,
	"pages":9,
	"current_page":4,
	"results":
	[
		{
			"rank":301,
			"ticker":"ABC",
			"name":"AmerisourceBergen",
			"mentions":"2",
			"upvotes":"2",
			"rank_24h_ago":"119",
			"mentions_24h_ago":"23"
		},
		[...]
	]
}