# New York Resy Restaurant Leads Scraper

**Use case:** 

Scrape New York Resy restaurant leads with venue IDs, cuisines, neighborhoods, ratings, price bands, phone numbers, and profile URLs.

## Input

```json
{
  "searchQueries": [
    "new york italian",
    "new york sushi",
    "brooklyn wine bar"
  ],
  "venueIds": [
    "443"
  ],
  "venueUrls": [],
  "maxItems": 100,
  "includeVenueDetails": true,
  "includeAvailability": false,
  "partySize": 2
}
```

## Output

```json
{
  "venueId": {
    "label": "Venue ID",
    "format": "number"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "searchQuery": {
    "label": "Search query",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "neighborhood": {
    "label": "Neighborhood",
    "format": "text"
  },
  "cuisine": {
    "label": "Cuisine",
    "format": "text"
  },
  "priceRange": {
    "label": "Price range",
    "format": "number"
  },
  "ratingAverage": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Rating count",
    "format": "number"
  },
  "availableSlotCount": {
    "label": "Available slots",
    "format": "number"
  },
  "availabilityDate": {
    "label": "Availability date",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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