Endpoint Playground
Test Crawlora's Roblox Experience Search 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/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Experience search query | |
| page_token | string | No | Opaque page token returned by a previous search |
{
"code": 200,
"msg": "OK",
"data": {
"query": "Adopt Me",
"experiences": [
{
"universe_id": 383310974,
"root_place_id": 920587237,
"name": "[🌧️] Adopt Me!",
"player_count": 256093,
"url": "https://www.roblox.com/games/920587237/Adopt-Me"
}
]
}
}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.
Searches anonymous public Roblox game experiences. The opaque page_token continues the same search.
{
"code": 200,
"msg": "OK",
"data": {
"query": "Adopt Me",
"experiences": [
{
"universe_id": 383310974,
"root_place_id": 920587237,
"name": "[🌧️] Adopt Me!",
"player_count": 256093,
"url": "https://www.roblox.com/games/920587237/Adopt-Me"
}
]
}
}curl "https://api.crawlora.net/api/v1/roblox/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"