API v1 (Legacy)
Reference
GET /job_posts

GET /job_posts

Job posts and department breakdowns 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/job_posts?apiKey=YOUR_API_KEY&symbol=TSLA"

Response Shape

{
  "status": 200,
  "symbol": "TSLA",
  "posts": [
    {
      "id": "123",
      "title": "Software Engineer",
      "published": "2026-01-27",
      "url": "https://...",
      "location": "Austin, TX"
    }
  ],
  "departments": [
    { "department": "Engineering", "jobs": 42 }
  ]
}