GET /ai_timeline
AI-focused alternative-data timeline 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. |
Behavior Notes
- Returns a list of daily data points with many signal fields.
reddit_sentimentis scaled to an integer (value * 100).
Example
curl "https://api.altindex.com/ai_timeline?apiKey=YOUR_API_KEY&symbol=TSLA"Response Shape
{
"status": 200,
"id": "1",
"name": "Tesla",
"ticker": "TSLA",
"data": [
{
"date": "2026-01-27",
"reddit_mentions": 12,
"reddit_sentiment": 64,
"stocktwits_mentions": 6624,
"ai_scores": { "score": 62 }
}
]
}