# Translate Google Reviews to English – Any Language

**Use case:** 

Scrape Google Maps reviews and auto-translate them to English (or any language). Keeps both translated and original text for each review.

## Input

```json
{
  "placeUrls": [
    {
      "url": "https://maps.app.goo.gl/KZLn9FA3aokoiVaP8"
    }
  ],
  "maxPlacesPerSearch": 20,
  "maxReviewsPerPlace": 100,
  "sortBy": "newest",
  "language": "en",
  "country": "us"
}
```

## Output

```json
{
  "placeName": {
    "label": "Place Name",
    "format": "string"
  },
  "rating": {
    "label": "Review Rating",
    "format": "integer"
  },
  "text": {
    "label": "Review Text",
    "format": "string"
  },
  "timestamp": {
    "label": "Timestamp",
    "format": "string"
  },
  "authorName": {
    "label": "Author Name",
    "format": "string"
  },
  "ownerResponseText": {
    "label": "Owner Response",
    "format": "string"
  }
}
```

## About this Actor

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