GET /toplist
Ranked lists across various metrics.
Authentication
Use the apiKey (or apikey) query parameter.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| apiKey | string | yes | API key query parameter (case-insensitive). |
| sort | string | no | Sort key (for example job_posts, webtraffic, new, reddit_mentions, stocktwits_mentions, twitter_mentions, news_mentions, instagram_followers, facebook_fans, tiktok_followers, threads_followers, 4chan_mentions, lobbying_expense). |
| industry | string | no | Optional industry filter. |
| entity | string | no | Optional entity filter (company or crypto). |
Example
curl "https://api.altindex.com/toplist?apiKey=YOUR_API_KEY&sort=job_posts"Response Shape
{
"status": 200,
"ordered_by": "job_posts",
"entities": [
{
"id": "1",
"name": "Tesla",
"ticker": "TSLA",
"price": 245.12,
"job_posts": 120,
"job_posts_change": 5.4
}
]
}