Endpoint Playground
Test Crawlora's Roblox Experience Badges 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/badges?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 | |
| cursor | string | No | Opaque cursor returned by a previous response |
{
"code": 200,
"data": {
"badges": [
{
"awarding_root_place_id": 1,
"awarding_universe": "sample",
"awarding_universe_id": 1,
"awards_all_time": 1,
"awards_past_day": 1,
"created_at": "sample",
"description": "sample",
"enabled": true,
"icon_url": "https://example.com/resource",
"id": 1,
"name": "sample",
"updated_at": "sample"
}
],
"next_cursor": "sample",
"previous_cursor": "sample",
"universe_id": 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 one cursor-paginated page of public badge metadata for a Roblox experience. Pass next_cursor back unchanged as cursor. No user-awarded badge data is returned.
{
"code": 200,
"data": {
"badges": [
{
"awarding_root_place_id": 1,
"awarding_universe": "sample",
"awarding_universe_id": 1,
"awards_all_time": 1,
"awards_past_day": 1,
"created_at": "sample",
"description": "sample",
"enabled": true,
"icon_url": "https://example.com/resource",
"id": 1,
"name": "sample",
"updated_at": "sample"
}
],
"next_cursor": "sample",
"previous_cursor": "sample",
"universe_id": 1
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/roblox/badges?universe_id=<universe_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"