GET /employee_reviews
Employee reviews for a ticker.
Authentication
Use the apiKey (or apikey) query parameter.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| apiKey | string | yes | API key query parameter (case-insensitive). |
| symbol | string | yes | Stock ticker symbol. |
Example
curl "https://api.altindex.com/employee_reviews?apiKey=YOUR_API_KEY&symbol=TSLA"Response Shape
{
"status": 200,
"symbol": "TSLA",
"posts": [
{
"title": "Great place to work",
"description": "...",
"published": "2026-01-20",
"location": "Austin, TX",
"rating": 4.5
}
]
}