# Barcelona Restaurant Reviews - TheFork Ratings Data

**Use case:** 

Export highly rated diner reviews for Barcelona restaurants from TheFork with ratings, review text, and meal dates. Save as CSV or JSON.

## Input

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

## Output

```json
{
  "restaurantName": {
    "label": "Restaurant",
    "format": "string"
  },
  "ratingValue": {
    "label": "Rating",
    "format": "number"
  },
  "reviewBody": {
    "label": "Review Text",
    "format": "string"
  },
  "mealDate": {
    "label": "Visit Date",
    "format": "string"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "string"
  },
  "reviewerReviewCount": {
    "label": "Reviewer Reviews",
    "format": "integer"
  },
  "likes": {
    "label": "Likes",
    "format": "integer"
  },
  "hasReply": {
    "label": "Has Reply",
    "format": "boolean"
  },
  "replyText": {
    "label": "Owner Reply",
    "format": "string"
  },
  "photosCount": {
    "label": "Photos",
    "format": "integer"
  }
}
```

## 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.