# Yandex Maps place reviews extractor for Cafe Pushkin

**Use case:** 

Extract public Yandex Maps reviews from a specific place URL, including ratings, review text, authors, dates, and business metadata.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://yandex.com/maps/org/1018907821/"
    }
  ],
  "businessIds": [
    "1018907821"
  ],
  "searchQueries": [
    {
      "query": "cafe pushkin",
      "location": "moscow",
      "coordinates": "37.6173,55.7558",
      "span": "0.5,0.5"
    }
  ],
  "maxItems": 50,
  "maxReviewsPerPlace": 50,
  "maxPlacesPerQuery": 3,
  "sort": "by_time",
  "locale": "ru_RU",
  "regionId": 213
}
```

## Output

```json
{
  "placeName": {
    "label": "Place"
  },
  "placeUrl": {
    "label": "Place URL",
    "format": "link"
  },
  "address": {
    "label": "Address"
  },
  "overallRating": {
    "label": "Overall rating"
  },
  "reviewerName": {
    "label": "Reviewer"
  },
  "rating": {
    "label": "Review rating"
  },
  "reviewText": {
    "label": "Review text"
  },
  "reviewDate": {
    "label": "Review date"
  },
  "likes": {
    "label": "Likes"
  },
  "ownerReplyText": {
    "label": "Owner reply"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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