gmb services
Get services
Gets the services offered by a Google Business Profile location. Returns an array of service items (structured or free-form with optional price).
AuthorizationBearer <token>
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
accountIdstring
Query Parameters
locationId?string
Override which location to query. If omitted, uses the account's selected location.
Response Body
application/json
application/json
curl -X GET "https://zernio.com/api/v1/accounts/string/gmb-services"{
"success": true,
"accountId": "string",
"locationId": "string",
"services": [
{
"structuredServiceItem": {
"serviceTypeId": "string",
"description": "string"
},
"freeFormServiceItem": {
"category": "string",
"label": {
"displayName": "string",
"description": "string"
}
},
"price": {
"currencyCode": "USD",
"units": "50",
"nanos": 0
}
}
]
}{
"error": "string",
"details": {}
}Get plan and usage stats GET
Returns the current plan name, billing period, plan limits, and usage counts.
Replace services PUT
Replaces the entire service list for a location. Google's API requires full replacement; individual item updates are not supported. Each service can be structured (using a predefined serviceTypeId) or free-form (custom label).