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 attributes

Returns Google Business Profile location attributes (amenities, services, accessibility, payment types). Available attributes vary by business category.


GET
/v1/accounts/{accountId}/gmb-attributes

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

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

{  "success": true,  "attributes": [    {      "name": "has_delivery",      "valueType": "BOOL",      "values": [        true      ]    },    {      "name": "has_takeout",      "valueType": "BOOL",      "values": [        true      ]    },    {      "name": "has_outdoor_seating",      "valueType": "BOOL",      "values": [        true      ]    },    {      "name": "pay_credit_card_types_accepted",      "valueType": "REPEATED_ENUM",      "repeatedEnumValue": {        "setValues": [          "visa",          "mastercard",          "amex"        ]      }    }  ]}
Was this page helpful?

Delete photo

Deletes a photo or media item from a Google Business Profile location.

Update attributes

Updates location attributes (amenities, services, etc.). The attributeMask specifies which attributes to update (comma-separated).