# Athens Greek Restaurants Scraper - TripAdvisor Data

**Use case:** 

Scrape top rated Greek restaurants in Athens from TripAdvisor with bubble ratings, review counts, price range and cuisine. Export to CSV or JSON.

## Input

```json
{
  "locationQuery": "Athens",
  "startUrls": [
    "https://www.tripadvisor.com/Hotel_Review-g60763-d93589-Reviews-The_Michelangelo_New_York-New_York_City_New_York.html"
  ],
  "placeTypes": [
    "restaurants"
  ],
  "maxResultsPerType": 50,
  "includeDetails": false,
  "currency": "USD",
  "hotelAdults": 2,
  "hotelRooms": 1,
  "hotelMinRating": "",
  "hotelClasses": [],
  "hotelStyles": [],
  "hotelSort": "BEST_VALUE",
  "restaurantPrice": [],
  "restaurantMealTypes": [],
  "restaurantDietary": [],
  "restaurantCuisines": [
    "10664"
  ],
  "restaurantRatingMin": "4",
  "restaurantSort": "POPULARITY",
  "cruiseDestination": "",
  "cruiseLine": "",
  "stopOnError": false
}
```

## Output

```json
{
  "name": {
    "label": "📛 Name",
    "format": "string"
  },
  "rating": {
    "label": "⭐ Rating",
    "format": "number"
  },
  "review_count": {
    "label": "🗳 Reviews",
    "format": "integer"
  },
  "price": {
    "label": "💲 Price",
    "format": "string"
  },
  "address": {
    "label": "📍 Address",
    "format": "string"
  },
  "url": {
    "label": "🔗 URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [TripAdvisor Hotels, Restaurants & Cruises Scraper](https://apify.com/jdtpnjtp/tripadvisor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/jdtpnjtp/tripadvisor) to learn more, explore other use cases, and run it yourself.