/v1/gainers
Tickers with the biggest mention surge
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/apewisdom-api/v1/gainers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/apewisdom-api/v1/gainers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/apewisdom-api/v1/gainers");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/apewisdom-api/v1/gainers",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Tickers whose Reddit mentions rose the most vs 24h ago — newly going viral.",
"count": 65,
"filter": "all-stocks",
"source": "ApeWisdom",
"tickers": [
{
"name": "Microsoft",
"rank": 1,
"ticker": "MSFT",
"upvotes": 2187,
"mentions": 554,
"rank_change": 4,
"rank_24h_ago": 5,
"mention_change": 360,
"mentions_24h_ago": 194
},
{
"name": "Collaborative Investment Series Trust - The SPAC and New Issue ETF",
"rank": 3,
"ticker": "SPCX",
"upvotes": 1777,
"mentions": 426,
"rank_change": 4,
"rank_24h_ago": 7,
"mention_change": 298,
"mentions_24h_ago": 128
},
{
"name": "Adobe",
"rank": 5,
"ticker": "ADBE",
"upvotes": 1132,
"mentions": 234,
"rank_change": 29,
"rank_24h_ago": 34,
"mention_change": 208,
"mentions_24h_ago": 26
},
{
"name": "Tesla",
"rank": 9,
"ticker": "TSLA",
"upvotes": 501,
"mentions": 132,
"rank_change": 2,
"rank_24h_ago": 11,
"mention_change": 68,
"mentions_24h_ago": 64
},
{
"name": "Virgin Galactic",
"rank": 15,
"ticker": "SPCE",
"upvotes": 273,
"mentions": 70,
"rank_change": 29,
"rank_24h_ago": 44,
"mention_change": 58,
"mentions_24h_ago": 12
},
{
"name": "AST SpaceMobile",
"rank": 13,
"ticker": "ASTS",
"upvotes": 255,
"mentions": 85,
"rank_change": 12,
"rank_24h_ago": 25,
"mention_change": 55,
"mentions_24h_ago": 30
},
{
"name": "Sandisk",
"rank": 10,
"ticker": "SNDK",
"upvotes": 302,
"mentions": 98,
"rank_change": 7,
"rank_24h_ago": 17,
"mention_change": 51,
"mentions_24h_ago": 47
},
{
"name": "DTE Energy",
"rank": 7,
"ticker": "DTE",
"upvotes": 3780,
"mentions": 161,
"rank_change": 1,
"rank_24h_ago": 8,
"mention_change": 48,
"mentions_24h_ago": 113
},
…