# Google Reviews by Date Range – Audit Any Time Period

**Use case:** 

Scrape Google Maps reviews within a specific date range using exact timestamps. Set start and end dates to pull only the reviews you need.

## Input

```json
{
  "placeUrls": [
    {
      "url": "https://maps.app.goo.gl/KZLn9FA3aokoiVaP8"
    }
  ],
  "maxPlacesPerSearch": 20,
  "maxReviewsPerPlace": 1000,
  "startDate": "2025-01-01",
  "endDate": "2025-12-31",
  "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.