GET /ai_score
AI score list or timeline.
Authentication
Use the apiKey (or apikey) query parameter.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| apiKey | string | yes | API key query parameter (case-insensitive). |
| symbol | string | no | Stock ticker symbol. When provided, returns a timeline. |
| order | string | no | When listing, use desc for descending order. |
Behavior Notes
- With
symbol, returns a timeline of AI score fields. - Without
symbol, returns a list of AI scores for active companies.
Example
curl "https://api.altindex.com/ai_score?apiKey=YOUR_API_KEY"Response Shape (List)
{
"status": 200,
"results": [
{
"ticker": "TSLA",
"name": "Tesla",
"logo": "https://altindex.com/assets/images/tickers/TSLA.jpg",
"ai_score": "62"
}
]
}