# Check Resy Availability for Four People

**Use case:** 

Paste Resy restaurant URLs and find today's available reservation times for a party of four, with venue details and direct booking links.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://resy.com/cities/new-york-ny/carbone"
    },
    {
      "url": "https://resy.com/cities/new-york-ny/don-angie"
    }
  ],
  "partySize": 4
}
```

## Output

```json
{
  "name": {
    "label": "Restaurant",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "partySize": {
    "label": "Party Size",
    "format": "number"
  },
  "slotCount": {
    "label": "Slots",
    "format": "number"
  },
  "checkedAt": {
    "label": "Checked At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Resy Availability Checker | Real-Time Slots](https://apify.com/clearpath/resy-availability-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/clearpath/resy-availability-api) to learn more, explore other use cases, and run it yourself.