Endpoint Playground
Test Crawlora's Alt top movers API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/alt/top-movers" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | No | Optional category filter for the leaderboard. Ignored when subject is set. Omit to rank movers across every category. | |
| subject | string | No | Optional exact player/subject name. Returns that subject's own trend per category instead of a leaderboard, and category is ignored. | |
| limit | integer | No | Max results, default 10, max 50 |
{
"code": 200,
"msg": "OK",
"data": {
"updated_at": "2026-09-09T15:01:57.741946+00:00",
"version": "ff9b83e6-672b-4a98-8346-f16c85a6f210",
"subjects": [
{
"subject": "Allen Iverson",
"category": "BASKETBALL_CARDS",
"start_date": "2025-09-07",
"end_date": "2026-09-07",
"current_index_value": 19234.54015194957,
"weekly_change": 0.09850479760332465,
"monthly_change": 0.34467981882250376,
"ninety_day_change": 0.5404539004760289
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns Alt's biggest price-index movers -- either a cross-subject leaderboard (optionally scoped to one category) or, when subject is set, that one player/character's own trend broken out per category it appears in. category is not strictly validated against alt-categories' list -- this trend index's own category set is broader (e.g. it includes MULTI-SPORT_CARDS). Credential-free public data from Alt's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"updated_at": "2026-09-09T15:01:57.741946+00:00",
"version": "ff9b83e6-672b-4a98-8346-f16c85a6f210",
"subjects": [
{
"subject": "Allen Iverson",
"category": "BASKETBALL_CARDS",
"start_date": "2025-09-07",
"end_date": "2026-09-07",
"current_index_value": 19234.54015194957,
"weekly_change": 0.09850479760332465,
"monthly_change": 0.34467981882250376,
"ninety_day_change": 0.5404539004760289
}
]
}
}curl "https://api.crawlora.net/api/v1/alt/top-movers" \
-H "x-api-key: $CRAWLORA_API_KEY"