# GrabFood Restaurant Scraper: Menus, Ratings & Delivery Data

**Use case:** 

Scrape GrabFood restaurants across SE Asia by keyword or URL. Get menus, prices, ratings, reviews, promos, delivery fees, hours, GPS, and 45+ fields.

## Input

```json
{
  "mode": "search",
  "region": "SG",
  "searchQueries": [
    "ramen"
  ],
  "startUrls": [
    "https://food.grab.com/sg/en/restaurants?search=sushi"
  ],
  "minReviews": 0,
  "sortBy": "default",
  "fetchMenu": true,
  "includeRatings": true,
  "maxItems": 20,
  "maxPages": 0,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "maxNotifyListings": 50
}
```

## Output

```json
{
  "id": {
    "label": "ID"
  },
  "name": {
    "label": "Name"
  },
  "chainName": {
    "label": "Chain"
  },
  "cuisine": {
    "label": "Cuisine"
  },
  "rating": {
    "label": "Rating"
  },
  "voteCount": {
    "label": "Reviews"
  },
  "priceTag": {
    "label": "Price tier"
  },
  "address": {
    "label": "Address"
  },
  "fullAddress": {
    "label": "Full address"
  },
  "city": {
    "label": "City"
  },
  "countryCode": {
    "label": "Country"
  },
  "latitude": {
    "label": "Lat"
  },
  "longitude": {
    "label": "Lng"
  },
  "isOpen": {
    "label": "Open"
  },
  "estimatedDeliveryTime": {
    "label": "ETA (min)"
  },
  "estimatedDeliveryTimeRange": {
    "label": "ETA range"
  },
  "distanceInKm": {
    "label": "Distance km"
  },
  "hasPromo": {
    "label": "Promo"
  },
  "promoLabels": {
    "label": "Promo labels"
  },
  "deliveryOptions": {
    "label": "Delivery options"
  },
  "menuCategoryCount": {
    "label": "Menu cats"
  },
  "menuItemCount": {
    "label": "Menu items"
  },
  "grabUrl": {
    "label": "GrabFood URL",
    "format": "link"
  },
  "region": {
    "label": "Region"
  },
  "scrapedAt": {
    "label": "Scraped"
  }
}
```

## About this Actor

This example demonstrates how to use [GrabFood Restaurant Scraper: Menus, Ratings & Delivery Data](https://apify.com/abotapi/grabfood-restaurants-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/abotapi/grabfood-restaurants-scraper) to learn more, explore other use cases, and run it yourself.