Zernio
Zernio
API Reference

Google Business Profile

Reviews

Get reviewsGETGet a reviewGETBatch get reviewsPOSTReply to a reviewPOSTDelete a review replyDELETE

Food Menus

Get food menusGETUpdate food menusPUT

Location Details

Get location detailsGETUpdate location detailsPUT

Services

Get servicesGETReplace servicesPUT

Verification

Get verification stateGETFetch verification optionsPOSTStart a verificationPOSTComplete a verificationPOST

Media

List mediaGETUpload photoPOSTDelete photoDELETE

Attributes

Get attributesGETUpdate attributesPUTGet attribute metadataGET

Place Actions

List action linksGETCreate action linkPOSTUpdate action linkPATCHDelete action linkDELETE
Dashboard
llms.txtOpenAPI
OverviewPlatformsAPI ReferenceResources
Google Business Profile

Get food menus

Returns food menus for a Google Business Profile location including sections, items, pricing, and dietary info. Only for locations with food menu support.


GET
/v1/accounts/{accountId}/gmb-food-menus

Authorization

bearerAuth
AuthorizationBearer <token>

API key authentication: send your Zernio API key in the Authorization header, prefixed with Bearer.

In: header

Path Parameters

accountId*string

The Zernio account ID (from /v1/accounts)

Query Parameters

locationId?string

Override which location to query. If omitted, uses the account's selected location. Use GET /gmb-locations to list valid IDs.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

{  "success": true,  "accountId": "64e1f0a9e2b5af0012ab34cd",  "locationId": "9281089117903930794",  "name": "accounts/123456789/locations/9281089117903930794/foodMenus",  "menus": [    {      "labels": [        {          "displayName": "Lunch Menu",          "description": "Available 11am-3pm",          "languageCode": "en"        }      ],      "sections": [        {          "labels": [            {              "displayName": "Appetizers"            }          ],          "items": [            {              "labels": [                {                  "displayName": "Caesar Salad",                  "description": "Romaine, parmesan, croutons"                }              ],              "attributes": {                "price": {                  "currencyCode": "USD",                  "units": "12"                },                "dietaryRestriction": [                  "VEGETARIAN"                ]              }            }          ]        }      ]    }  ]}
Was this page helpful?

Delete a review reply

Removes the business owner reply from a Google Business Profile review. The review itself remains.

Update food menus

Updates food menus for a Google Business Profile location. Send the full menus array. Use updateMask for partial updates.