API v1 (Legacy)
Reference
GET /news_articles

GET /news_articles

News articles for a ticker.

Authentication

Use the apiKey (or apikey) query parameter.

Parameters

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

Example

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

Response Shape

{
  "status": 200,
  "symbol": "TSLA",
  "articles": [
    {
      "title": "Tesla announces...",
      "published": "2026-01-27",
      "source": "Reuters",
      "img": "https://...",
      "url": "https://..."
    }
  ]
}