Skip to content
SynupAPI
Get an API key
GETapi.synup.com/api/v4/locations/google-verification-stats

Google verification location 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.

Requires an API key. Send it as Authorization: API <your-key> — see Getting started.

Parameters

Query

NameTypeRequiredDescription
filterInputstringoptionalJSON-encoded filter object. Defaults to an empty filter (all locations).
selectionTypestringoptionalWhether to include all matching locations or an explicit selection.
locationIdsarrayoptionalLocation IDs to include when selectionType is SELECTED_ITEMS.

Headers

NameTypeRequiredDescription
Synup-VersionstringrequiredAPI version date (YYYY-MM-DD).

Request

Request
curl -X GET 'https://api.synup.com/api/v4/locations/google-verification-stats?filterInput=&selectionType=&locationIds=' \
  -H 'Authorization: API YOUR_API_KEY' \
  -H 'Content-Type: application/json'

Responses

StatusDescription
200Successful response
401Unauthorized - Invalid or missing API key
Example response (generated from the schema)
{
  "data": {
    "googleVerificationLocationStats": {
      "total": 0,
      "verified": 0,
      "underReview": 0,
      "pendingVerification": 0,
      "duplicate": 0,
      "suspended": 0,
      "notVerified": 0,
      "errorWhileFetching": 0,
      "notConnected": 0,
      "listingNotPresent": 0
    }
  }
}

Response body

NameTypeRequiredDescription
dataobjectoptional
data.googleVerificationLocationStatsobjectoptional
data.googleVerificationLocationStats.totalintegeroptional
data.googleVerificationLocationStats.verifiedintegeroptional
data.googleVerificationLocationStats.underReviewintegeroptional
data.googleVerificationLocationStats.pendingVerificationintegeroptional
data.googleVerificationLocationStats.duplicateintegeroptional
data.googleVerificationLocationStats.suspendedintegeroptional
data.googleVerificationLocationStats.notVerifiedintegeroptional
data.googleVerificationLocationStats.errorWhileFetchingintegeroptional
data.googleVerificationLocationStats.notConnectedintegeroptional
data.googleVerificationLocationStats.listingNotPresentintegeroptional