Zum Inhalt springen
GET /v1/trending

Tickers ranked by Reddit mentions

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/apewisdom-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/apewisdom-api/v1/trending" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/apewisdom-api/v1/trending", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/apewisdom-api/v1/trending");
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/trending",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "count": 100,
        "total": 1197,
        "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": "SPDR S&P 500 ETF Trust",
                "rank": 2,
                "ticker": "SPY",
                "upvotes": 3745,
                "mentions": 543,
                "rank_change": -1,
                "rank_24h_ago": 1,
                "mention_change": -65,
                "mentions_24h_ago": 608
            },
            {
                "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": "Micron Technology",
                "rank": 4,
                "ticker": "MU",
                "upvotes": 1071,
                "mentions": 318,
                "rank_change": -1,
                "rank_24h_ago": 3,
                "mention_change": 43,
                "mentions_24h_ago": 275
            },
            {
                "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": "Invesco QQQ ETF",
                "rank": 6,
                "ticker": "QQQ",
                "upvotes": 1328,
                "mentions": 208,
                "rank_change": -2,
                "rank_24h_ago": 4,
                "mention_change": 21,
                "mentions_24h_ago": 187
            },
            {
                "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
            },
            {
                "name": "NVIDIA",
                "rank": 8,
                "ticker": "NVDA",
                "upvotes": 474,
                "mentions": 148,
                "rank_change": -2,
                "rank_24h_ago": 6,
                "mention_change": -22,
                "mentions_24h_ago": 170
            },
            {
                "name": "Tesla",
      
…