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 GBP 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 - use your Zernio API key as a Bearer token

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 GBP location.

Update attributes

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