Endpoint Playground
Test Crawlora's Roblox Game Rankings 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/roblox/rankings?sort_id=top-trending" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| sort_id | string | No | top-trending | Ranking shelf: top-trending, up-and-coming, top-playing-now, fun-with-friends, top-revisited |
{
"code": 200,
"msg": "OK",
"data": {
"sort_id": "top-trending",
"display_name": "Top Trending",
"experiences": [
{
"universe_id": 10563114921,
"name": "Steal An Egg",
"player_count": 740338,
"genre": "Simulation"
}
]
}
}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 a public Roblox game shelf. Allowed sort_id values: top-trending, up-and-coming, top-playing-now, fun-with-friends, top-revisited.
{
"code": 200,
"msg": "OK",
"data": {
"sort_id": "top-trending",
"display_name": "Top Trending",
"experiences": [
{
"universe_id": 10563114921,
"name": "Steal An Egg",
"player_count": 740338,
"genre": "Simulation"
}
]
}
}curl "https://api.crawlora.net/api/v1/roblox/rankings" \
-H "x-api-key: $CRAWLORA_API_KEY"