API v1 (Legacy)
Reference
GET /social_media_mentions

GET /social_media_mentions

Aggregated social mentions for all active companies.

Authentication

Use the apiKey (or apikey) query parameter.

Parameters

NameTypeRequiredDescription
apiKeystringyesAPI key query parameter (case-insensitive).

Behavior Notes

  • Aggregates mentions across Reddit, 4chan, Stocktwits, and Twitter/X.
  • Provides totals for yesterday and the day before (mentions and mentions_prev).

Example

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

Response Shape

{
  "status": 200,
  "data": {
    "1": {
      "display_name": "Tesla",
      "ticker": "TSLA",
      "link": "https://altindex.com/ticker/TSLA",
      "logo": "https://altindex.com/assets/images/tickers/TSLA.jpg",
      "mentions": 240,
      "mentions_prev": 210
    }
  }
}