Skip to content
GET /v1/trending

Tickers being discussed most right now

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/stocktwits-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "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
…