API v1 (Legacy)
Reference
GET /stocktwits_mentions

GET /stocktwits_mentions

Ranked Stocktwits mention counts for active companies.

Authentication

Use the apiKey (or apikey) query parameter.

Parameters

NameTypeRequiredDescription
apiKeystringyesAPI key query parameter (case-insensitive).

Behavior Notes

  • Returns the most recent Stocktwits mention counts across active companies.
  • Results are sorted by mentions descending.
  • mentions_prev is included when available.

Example

curl "https://api.altindex.com/stocktwits_mentions?apiKey=YOUR_API_KEY"

Response Shape

{
  "status": 200,
  "data": [
    {
      "display_name": "Tesla",
      "id": "1",
      "ticker": "TSLA",
      "price": "245.12",
      "price_change": "-1.23",
      "ai_score": "62",
      "link": "https://altindex.com/ticker/TSLA",
      "logo": "https://altindex.com/assets/images/tickers/TSLA.jpg",
      "mentions": 320,
      "mentions_prev": 280
    }
  ]
}