API v1 (Legacy)
Reference
GET /industry_benchmark

GET /industry_benchmark

Peer benchmark data for a ticker's industry.

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/industry_benchmark?apiKey=YOUR_API_KEY&symbol=TSLA"

Response Shape

{
  "status": 200,
  "symbol": "TSLA",
  "data": {
    "reddit_mentions": {
      "date": "2026-01-27",
      "value": 12,
      "peers": [
        {
          "id": "2",
          "name": "Ford",
          "ticker": "F",
          "value": 8
        }
      ]
    }
  }
}