Endpoint Playground
Test Crawlora's Deliveroo 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/deliveroo/restaurant?uname=<uname>&market=uk" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| uname | string | Yes | Restaurant slug, from a search response's uname field | |
| market | string | No | uk | Deliveroo national market the uname was found in (default uk) |
{
"code": 200,
"msg": "OK",
"data": {
"restaurant_id": "255494",
"name": "Nando's - Wilton Road",
"uname": "nandos-wilton-road",
"address1": "Units 1 & 2107-108 Wilton Road, London, SW1V1DZ",
"neighborhood": "Victoria",
"city": "london",
"country": "GB",
"currency_code": "GBP",
"currency_symbol": "£",
"branch_type": "RESTAURANT",
"fulfillment_type": "DELIVEROO",
"rating": 4.7,
"review_count_text": "500+",
"menu_disabled": false,
"delivers_to_customer_location": false
}
}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 Deliveroo partner's detail by uname -- restaurant, grocery, or shopping store alike, distinguished by branch_type: name, address, currency, branch/fulfillment type, rating, review count, a hero image, and whether it currently accepts orders.
{
"code": 200,
"msg": "OK",
"data": {
"restaurant_id": "255494",
"name": "Nando's - Wilton Road",
"uname": "nandos-wilton-road",
"address1": "Units 1 & 2107-108 Wilton Road, London, SW1V1DZ",
"neighborhood": "Victoria",
"city": "london",
"country": "GB",
"currency_code": "GBP",
"currency_symbol": "£",
"branch_type": "RESTAURANT",
"fulfillment_type": "DELIVEROO",
"rating": 4.7,
"review_count_text": "500+",
"menu_disabled": false,
"delivers_to_customer_location": false
}
}curl "https://api.crawlora.net/api/v1/deliveroo/restaurant?uname=<uname>" \
-H "x-api-key: $CRAWLORA_API_KEY"