# Madrid Restaurant Menus and Prices - TheFork Data

**Use case:** 

Export Madrid restaurant menus from TheFork with dishes, set menus, prices, ratings, and cuisine type per restaurant. Save as CSV or JSON.

## Input

```json
{
  "urls": [
    "https://www.thefork.com/restaurants/madrid-c328022"
  ],
  "maxRestaurants": 30,
  "startPage": 1,
  "includeMenu": true,
  "includeReviewsForRestaurants": false,
  "maxReviewsPerRestaurant": 50,
  "includeFoodPhotos": false,
  "maxFoodPhotos": 30,
  "includeCustomerPhotos": false,
  "maxCustomerPhotos": 30,
  "maxReviews": 100,
  "reviewsOffset": 0,
  "reviewsTimeframe": "7d",
  "reviewsWithText": "WITH_REVIEW",
  "reviewsOrderBy": "MEAL_DATE",
  "reviewsSortDirection": "DESC",
  "reviewsLanguage": "all",
  "reviewsOccasion": "",
  "debugMode": false
}
```

## Output

```json
{
  "restaurantName": {
    "label": "Restaurant",
    "format": "string"
  },
  "menuType": {
    "label": "Menu Type",
    "format": "string"
  },
  "sectionName": {
    "label": "Section",
    "format": "string"
  },
  "itemName": {
    "label": "Item",
    "format": "string"
  },
  "itemDescription": {
    "label": "Description",
    "format": "string"
  },
  "priceFormatted": {
    "label": "Price",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [TheFork Restaurant Intelligence Scrapper](https://apify.com/jdtpnjtp/thefork-restaurant-scraper-advanced) with a specific input configuration. Visit the [Actor detail page](https://apify.com/jdtpnjtp/thefork-restaurant-scraper-advanced) to learn more, explore other use cases, and run it yourself.