Aller au contenu
GET /v1/trending

Tickers being discussed most right now

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/stocktwits-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "note": "Tickers being discussed the most on StockTwits right now.",
        "count": 30,
        "source": "StockTwits",
        "symbols": [
            {
                "title": "Adobe Inc",
                "symbol": "ADBE",
                "exchange": "NASDAQ",
                "watchlist_count": 48782
            },
            {
                "title": "Trade Desk Inc",
                "symbol": "TTD",
                "exchange": "NASDAQ",
                "watchlist_count": 48184
            },
            {
                "title": "Velo3D Inc",
                "symbol": "VELO",
                "exchange": "NASDAQ",
                "watchlist_count": 8243
            },
            {
                "title": "Oracle Corp.",
                "symbol": "ORCL",
                "exchange": "NYSE",
                "watchlist_count": 63631
            },
            {
                "title": "EchoStar Corp",
                "symbol": "SATS",
                "exchange": "NASDAQ",
                "watchlist_count": 5204
            },
            {
                "title": "Alphabet Inc - Ordinary Shares - Class C",
                "symbol": "GOOG",
                "exchange": "NASDAQ",
                "watchlist_count": 308844
            },
            {
                "title": "Microsoft Corp",
                "symbol": "MSFT",
                "exchange": "NASDAQ",
                "watchlist_count": 535297
            },
            {
                "title": "Trulieve Cannabis Corp ",
                "symbol": "TRLV",
                "exchange": "NYSE",
                "watchlist_count": 7564
            },
            {
                "title": "Meta Platforms Inc",
                "symbol": "META",
                "exchange": "NASDAQ",
                "watchlist_count": 597867
            },
            {
                "title": "SpaceX",
                "symbol": "SPACZZX.P",
                "exchange": "PRIVATE",
                "watchlist_count": 14563
            },
            {
                "title": "Dutch Bros Inc",
                "symbol": "BROS",
                "exchange": "NYSE",
                "watchlist_count": 11752
            },
            {
                "title": "Coupang Inc ",
                "symbol": "CPNG",
                "exchange": "NYSE",
                "watchlist_count": 14022
            },
            {
                "title": "KLA Corp.",
                "symbol": "KLAC",
                "exchange": "NASDAQ",
                "watchlist_count": 5118
            },
            {
                "title": "Zillow Group Inc Class C",
                "symbol": "Z",
                "exchange": "NASDAQ",
                "watchlist_count": 19018
            },
            {
                "title": "Super Micro Computer Inc",
                "symbol": "SMCI",
                "exchange": "NASDAQ",
                "watchlist_count": 88890
            },
            {
                "ti
…