# Google verification location stats

```http
GET https://api.synup.com/api/v4/locations/google-verification-stats
```

Returns aggregated Google (Google Business Profile) verification status counts across the filtered set of locations — for example how many are verified, under review, pending verification, suspended, duplicate, or not connected. Use `filterInput`/`selectionType`/`locationIds` to scope the set, identical to Filter locations.

Source: https://developer.synup.com/api/locations/google-verification-location-stats

## Query parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `filterInput` | string | optional | JSON-encoded filter object. Defaults to an empty filter (all locations). |
| `selectionType` | string | optional | Whether to include all matching locations or an explicit selection. |
| `locationIds` | array | optional | Location IDs to include when selectionType is SELECTED_ITEMS. |

## Header parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `Synup-Version` | string | required | API version date (YYYY-MM-DD). |

## Example request

```bash
curl -X GET 'https://api.synup.com/api/v4/locations/google-verification-stats' \
  -H 'Authorization: API YOUR_API_KEY' \
  -H 'Content-Type: application/json'
```

## Responses

| Status | Description |
| --- | --- |
| `200` | Successful response |
| `401` | Unauthorized - Invalid or missing API key |
