API v1 (Legacy)
Reference
GET /stocktwits

GET /stocktwits

Recent Stocktwits posts for a ticker.

Authentication

Use the apiKey (or apikey) query parameter.

Parameters

NameTypeRequiredDescription
apiKeystringyesAPI key query parameter (case-insensitive).
symbolstringyesStock ticker symbol.

Behavior Notes

  • Returns up to 10 posts.
  • Posts are sorted by a blend of recency and likes.

Example

curl "https://api.altindex.com/stocktwits?apiKey=YOUR_API_KEY&symbol=TSLA"

Response Shape

{
  "status": 200,
  "symbol": "TSLA",
  "posts": [
    {
      "text": "TSLA looking strong today",
      "permalink": "https://stocktwits.com/...",
      "created": "2026-01-27 12:01:00",
      "likes": 32,
      "author": {
        "name": "altindex_user",
        "followers": 1200,
        "image": "https://..."
      }
    }
  ]
}