# Scrape Deliveroo Restaurants for UK Market

**Use case:** 

Pull Deliveroo UK restaurants: name, rating, delivery time, delivery fee/promo, slug, and URL. Map coverage by neighbourhood, benchmark competitors, and feed ho

## Input

```json
{
  "queries": [
    "london/soho"
  ],
  "domain": "co.uk",
  "maxResults": 10,
  "scrapeMenu": false
}
```

## Output

```json
{
  "name": {
    "label": "Restaurant",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "delivery_time": {
    "label": "Delivery Time",
    "format": "text"
  },
  "delivery_fee": {
    "label": "Delivery Fee",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "url": {
    "label": "Restaurant URL",
    "format": "link"
  },
  "slug": {
    "label": "Slug",
    "format": "text"
  },
  "menu_items": {
    "label": "Menu Items",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Deliveroo Scraper](https://apify.com/thirdwatch/deliveroo-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/thirdwatch/deliveroo-scraper) to learn more, explore other use cases, and run it yourself.