> ## Documentation Index
> Fetch the complete documentation index at: https://docs.birdeye.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Review Summary

> Fetch review summary grouped by review source — total counts and average ratings per platform.

```
get_review_summary
```

## Description

Returns a breakdown of review counts and average ratings, grouped by review platform (Google, Facebook, Yelp, etc.) for the authenticated business over a specified date range.

## Parameters

| Parameter   | Type   | Required | Format       | Description                   |
| ----------- | ------ | -------- | ------------ | ----------------------------- |
| `startDate` | string | Yes      | `MM/DD/YYYY` | Start of the reporting period |
| `endDate`   | string | Yes      | `MM/DD/YYYY` | End of the reporting period   |

## Example Usage

```
How many reviews do I have on Google vs Facebook for 2026?
```

```
Which review platform has my best ratings this year?
```

## Example Response

```json theme={null}
{
  "sources": [
    {
      "sourceName": "Google",
      "totalCount": 198,
      "averageRating": 4.7
    },
    {
      "sourceName": "Facebook",
      "totalCount": 87,
      "averageRating": 4.4
    },
    {
      "sourceName": "Yelp",
      "totalCount": 34,
      "averageRating": 4.1
    }
  ],
  "availableSources": ["Google", "Facebook", "Yelp", "Birdeye"]
}
```

## Notes

* Data is aggregated across all locations for the authenticated account.
* The `availableSources` field lists all platforms that have review data, regardless of the date filter.
