API v1 (Legacy)
Reference
GET /ai_score

GET /ai_score

AI score list or timeline.

Authentication

Use the apiKey (or apikey) query parameter.

Parameters

NameTypeRequiredDescription
apiKeystringyesAPI key query parameter (case-insensitive).
symbolstringnoStock ticker symbol. When provided, returns a timeline.
orderstringnoWhen 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"
    }
  ]
}