Endpoint Playground
Test Crawlora's Just Eat Restaurant 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/justeat/restaurant?unique_name=<unique_name>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| unique_name | string | Yes | Restaurant slug, from a search response's unique_name field |
{
"code": 200,
"msg": "OK",
"data": {
"restaurant_id": "120913",
"name": "McDonald's® - Victoria",
"unique_name": "mcdonalds-victorialondon",
"address": "155 Victoria Street, London, SW1E 5NA",
"city": "London",
"postal_code": "SW1E 5NA",
"country": "United Kingdom",
"image_url": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/120913.gif",
"primary_cuisine": "burgers",
"rating": 4.5,
"rating_count": 4647,
"is_active": true
}
}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 Just Eat restaurant's detail by unique_name: name, address, primary cuisine, rating, and whether it currently accepts orders.
{
"code": 200,
"msg": "OK",
"data": {
"restaurant_id": "120913",
"name": "McDonald's® - Victoria",
"unique_name": "mcdonalds-victorialondon",
"address": "155 Victoria Street, London, SW1E 5NA",
"city": "London",
"postal_code": "SW1E 5NA",
"country": "United Kingdom",
"image_url": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/120913.gif",
"primary_cuisine": "burgers",
"rating": 4.5,
"rating_count": 4647,
"is_active": true
}
}curl "https://api.crawlora.net/api/v1/justeat/restaurant?unique_name=<unique_name>" \
-H "x-api-key: $CRAWLORA_API_KEY"