Discover/Stocktwits API
live

Stocktwits APIstocktwits.com

Get currently trending stock and crypto symbols from Stocktwits — with ticker, price, volume, trending scores, and market index data. Paginated, filterable by asset class.

Endpoint health
verified 3d ago
get_trending_symbols
1/1 passing latest checkself-healing
Endpoints
1
Updated
26d ago

What is the Stocktwits API?

The Stocktwits Trending Symbols API exposes one endpoint — get_trending_symbols — that returns up to 30 trending tickers per page, each with fields including trending_score, instrument_class, sector, industry, watchlist count, and current price data. It also includes a market_indexes array with ETF-level price and volume snapshots, giving a quick read on broader market context alongside community momentum signals.

Try it
Page number for pagination.
Asset class filter.
Number of trending symbols to return per page (max 30).
Region filter.
api.parse.bot/scraper/09e16524-4533-449c-b713-8f1299802060/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/09e16524-4533-449c-b713-8f1299802060/get_trending_symbols?page=1&class=all&limit=10&region=US' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace stocktwits-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Stocktwits trending symbols — discover what's moving the market."""
from parse_apis.stocktwits_trending_symbols_api import Stocktwits, AssetClass, Region, UpstreamError

client = Stocktwits()

# List top trending US equities, capped at 5 items
for symbol in client.trendingsymbols.list(asset_class=AssetClass.ALL, region=Region.US, limit=5):
    print(symbol.symbol, symbol.title, symbol.trending_score, symbol.percent_change)

# Drill into the first trending crypto symbol
crypto = client.trendingsymbols.list(asset_class=AssetClass.CRYPTO, region=Region.X, limit=1).first()
if crypto:
    print(crypto.symbol, crypto.title, crypto.price, crypto.volume)

# Handle upstream errors gracefully
try:
    for s in client.trendingsymbols.list(region=Region.CA, limit=3):
        print(s.symbol, s.rank, s.trend_summary)
except UpstreamError as exc:
    print(f"upstream issue: {exc}")

print("exercised: trendingsymbols.list with AssetClass/Region enums, error handling")
All endpoints · 1 totalmissing one? ·

Get the list of currently trending stock ticker symbols on Stocktwits, including company names, trending scores, price data, volume, and community trend summaries. Results are paginated with up to 30 symbols per page. Each symbol includes real-time pricing, sector classification, watchlist counts, and an AI-generated trend summary describing why the symbol is trending.

Input
ParamTypeDescription
pageintegerPage number for pagination.
classstringAsset class filter.
limitintegerNumber of trending symbols to return per page (max 30).
regionstringRegion filter.
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "has_more": "boolean, whether more pages are available",
    "market_indexes": "array of market index ETF objects with symbol, title, exchange, price, change, percent_change, and volume",
    "total_returned": "integer, number of symbols returned on this page",
    "trending_symbols": "array of trending symbol objects with rank, symbol, title, exchange, sector, industry, instrument_class, trending_score, watchlist_count, logo_url, trend_summary, trend_rank_all, trend_rank_region, price, change, percent_change, and volume"
  },
  "sample": {
    "data": {
      "page": 1,
      "has_more": true,
      "market_indexes": [
        {
          "price": 741.44,
          "title": "SPDR S&P 500 ETF Trust",
          "change": -6.73,
          "symbol": "SPY",
          "volume": 10355142,
          "exchange": "NYSEArca",
          "percent_change": -0.9
        }
      ],
      "total_returned": 30,
      "trending_symbols": [
        {
          "rank": 1,
          "price": 23.66,
          "title": "Figma",
          "change": 3.42,
          "sector": "TechnologyServices",
          "symbol": "FIG",
          "volume": 30357600,
          "exchange": "NYSE",
          "industry": "PackagedSoftware",
          "logo_url": "https://logos.stocktwits-cdn.com/FIG.png",
          "trend_summary": "Figma is trending following a strong quarterly earnings report...",
          "percent_change": 16.9,
          "trend_rank_all": 1,
          "trending_score": 19.78,
          "watchlist_count": 16052,
          "instrument_class": "Stock",
          "trend_rank_region": 1
        }
      ]
    },
    "status": "success"
  }
}

About the Stocktwits API

What the API Returns

The get_trending_symbols endpoint returns a paginated list of tickers currently trending on Stocktwits. Each entry in the trending_symbols array includes the ticker symbol, company title, exchange, sector, industry, instrument_class, trending_score, and watchlist count. The trending_score is a numeric signal reflecting the relative volume of discussion for that symbol at the time of the request.

Filtering and Pagination

Results can be filtered using the class parameter, which accepts all, equity, or crypto. The region parameter narrows results to US, CA, or X (crypto). Use the limit parameter to request fewer than the maximum 30 results per page, and the page parameter to step through additional pages. The has_more boolean in the response indicates whether further pages exist.

Market Index Context

Alongside trending symbols, the response includes a market_indexes array. Each entry contains a market index ETF with its symbol, title, exchange, price, change, percent_change, and volume. This lets you cross-reference community trending activity against broad market movement without making a separate request.

Coverage Notes

The API covers equities listed on US and Canadian exchanges, as well as crypto assets. Sector and industry classifications are returned where available, but may be absent for certain instruments — particularly crypto assets, which often omit sector and industry fields. The watchlist field reflects community tracking counts on Stocktwits specifically and does not represent order flow or brokerage activity.

Reliability & maintenanceVerified

The Stocktwits API is a managed, monitored endpoint for stocktwits.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when stocktwits.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official stocktwits.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track which tickers are surging in social discussion before or after market open using trending_score
  • Filter trending crypto assets separately from equities using the class=crypto parameter
  • Compare community momentum signals against market index ETF moves using the market_indexes response field
  • Build a sector-level heat map of retail investor interest by aggregating sector and industry fields
  • Monitor watchlist counts over time to detect growing retail attention in specific tickers
  • Scope trending activity to Canadian-listed securities using the region=CA filter
  • Page through full trending lists programmatically using the page and has_more fields
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Stocktwits have an official developer API?+
Yes. Stocktwits offers an official API documented at https://api.stocktwits.com/developers. It covers streams, messages, and user data, but access tiers and availability have changed over time — some endpoints require approval or have been restricted.
What does the `trending_score` field represent?+
The trending_score is a numeric value that reflects how actively a symbol is being discussed on Stocktwits relative to its baseline activity. It is not a sentiment polarity score — it measures discussion volume or velocity, not whether sentiment is bullish or bearish.
Does the API return individual Stocktwits posts or sentiment breakdowns for each trending symbol?+
Not currently. The API returns symbol-level metadata including trending_score and watchlist counts, but does not return individual messages, bullish/bearish vote splits, or per-symbol sentiment percentages. You can fork this API on Parse and revise it to add an endpoint that fetches symbol-level message streams or sentiment data.
Are all 30 trending symbols always returned in a single response?+
The limit parameter controls how many symbols are returned per page, up to a maximum of 30. The total_returned field in the response confirms the actual count. If more results exist beyond the current page, has_more will be true and you can increment the page parameter to retrieve them.
Does the API expose historical trending data — for example, which symbols were trending yesterday?+
Not currently. The endpoint reflects symbols trending at the time of the request and does not include historical snapshots or time-series trending data. You can fork this API on Parse and revise it to add a scheduled data-collection endpoint that stores responses over time.
Page content last updated . Spec covers 1 endpoint from stocktwits.com.
Related APIs in FinanceSee all →
explodingtopics.com API
Discover rapidly growing trends, emerging startups, and top-performing websites by filtering through trending topics by category and volatility. Programmatically access detailed trend analysis, related topics, blog coverage, and curated highlights to stay ahead of market movements.
tipranks.com API
Discover top-performing stocks and access detailed analyst ratings and earnings forecasts to make informed investment decisions. Get real-time stock information including performance metrics and expert analyst opinions all in one place.
ticker.finology.in API
Search and analyze stocks, view company financials and market indices, track super investors and their holdings, and explore IPO listings and sector performance. Get comprehensive market data including company overviews, financial statements, and real-time dashboard information to make informed investment decisions.
polygon.io API
Access real-time and historical market data for stocks, cryptocurrencies, forex, and commodities—including price aggregates, ticker details, and financial statements—all from a single platform. Get the latest market news, check trading status across exchanges, and retrieve comprehensive ticker information to power your investment analysis and trading decisions.
stockanalysis.com API
Access comprehensive stock market data including real-time financials, income statements, statistics, and IPO calendars to research individual stocks and identify market movers. Search stocks, view detailed overviews, and monitor premarket activity all in structured, easy-to-use format.
ceo.ca API
Monitor trending stocks, browse popular discussion posts, and read full conversation threads from CEO.ca to stay informed on market discussions and investment opportunities. Get real-time insights into what's being talked about and what stocks are gaining traction on the platform.
trends.google.com API
Discover what's trending right now in any country by accessing the top search topics with real-time search volume, growth rates, and related queries. Stay informed on trending categories and see which searches are gaining the most momentum in your target markets.
money.tmx.com API
money.tmx.com API