Endpoint Playground
Test Crawlora's Roblox Experience 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/game?universe_id=<universe_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| universe_id | integer | Yes | Positive Roblox universe id |
{
"code": 200,
"data": {
"game": {
"access_price": 1,
"avatar_type": "sample",
"content_restricted": true,
"created_at": "sample",
"creator": {
"id": 1,
"name": "sample",
"type": "sample",
"verified": true
},
"description": "sample",
"down_votes": 1,
"favorites": 1,
"genre": "sample",
"genre_l1": "sample",
"genre_l2": "sample",
"image_url": "https://example.com/resource",
"max_players": 1,
"name": "sample",
"playing": 1,
"root_place_id": 1,
"universe_id": 1,
"up_votes": 1,
"updated_at": "sample",
"url": "https://example.com/resource",
"visits": 1
}
},
"msg": "OK"
}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 public catalog detail for one Roblox experience, including aggregate votes and its public icon. This endpoint does not return player, account, purchase, or server data.
{
"code": 200,
"data": {
"game": {
"access_price": 1,
"avatar_type": "sample",
"content_restricted": true,
"created_at": "sample",
"creator": {
"id": 1,
"name": "sample",
"type": "sample",
"verified": true
},
"description": "sample",
"down_votes": 1,
"favorites": 1,
"genre": "sample",
"genre_l1": "sample",
"genre_l2": "sample",
"image_url": "https://example.com/resource",
"max_players": 1,
"name": "sample",
"playing": 1,
"root_place_id": 1,
"universe_id": 1,
"up_votes": 1,
"updated_at": "sample",
"url": "https://example.com/resource",
"visits": 1
}
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/roblox/game?universe_id=<universe_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"