GET /tweets
Tweets for a ticker.
Authentication
Use the apiKey (or apikey) query parameter.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| apiKey | string | yes | API key query parameter (case-insensitive). |
| symbol | string | yes | Stock ticker symbol. |
Example
curl "https://api.altindex.com/tweets?apiKey=YOUR_API_KEY&symbol=TSLA"Response Shape
{
"status": 200,
"symbol": "TSLA",
"posts": [
{
"id": "123",
"text": "TSLA to the moon",
"permalink": "https://twitter.com/...",
"created": "2026-01-27 12:00:00",
"retweets": 12,
"author": {
"screen_name": "user",
"name": "User Name",
"image": "https://..."
}
}
]
}