API v1 (Legacy)
Reference
GET /app_reviews

GET /app_reviews

App store reviews 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/app_reviews?apiKey=YOUR_API_KEY&symbol=TSLA"

Response Shape

{
  "status": 200,
  "symbol": "TSLA",
  "posts": [
    {
      "id": "123",
      "title": "Great app",
      "description": "Works well",
      "published": "2026-01-27",
      "url": "https://apps.apple.com/...",
      "rating": 5
    }
  ]
}