# Restaurant Lead Extractor - Food Business Contacts

**Use case:** 

Scrape phones, addresses & websites of restaurants, cafes & catering from Google Maps. CSV/Excel. For food delivery platforms, POS vendors & F&B suppliers

## Input

```json
{
  "searchTerms": [
    "restaurant",
    "cafe",
    "bakery",
    "catering service",
    "food truck",
    "pizza restaurant",
    "sushi restaurant"
  ],
  "location": "Chicago, IL",
  "maxResults": 300,
  "concurrency": 3,
  "minRating": 3.5,
  "minReviews": 10,
  "extractPhones": true,
  "extractWebsites": true,
  "extractEmails": false,
  "extractOpeningHours": false,
  "language": "en",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Business Name",
    "format": "string"
  },
  "phone": {
    "label": "Phone",
    "format": "string"
  },
  "email": {
    "label": "Email",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviews": {
    "label": "Reviews",
    "format": "integer"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "hours": {
    "label": "Opening Hours",
    "format": "string"
  },
  "priceLevel": {
    "label": "Price Level",
    "format": "string"
  },
  "searchTerm": {
    "label": "Search Term",
    "format": "string"
  },
  "url": {
    "label": "Google Maps URL",
    "format": "string"
  },
  "placeId": {
    "label": "Place ID",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Maps Lead Extractor](https://apify.com/morkerr/google-maps-lead-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/morkerr/google-maps-lead-extractor) to learn more, explore other use cases, and run it yourself.