GET
/
citations
/
statuses
cURL
curl --request GET \
  --url https://api.gmbapi.com/external-api/gmb/citations/statuses \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "location_id": "12654275338176815409",
    "total": 3,
    "statuses": [
      {
        "publisher_id": "yelp",
        "publisher_status": "LIVE",
        "publisher_url": "https://www.yelp.com/biz/example-business"
      },
      {
        "publisher_id": "facebook",
        "publisher_status": "PENDING",
        "publisher_url": "https://www.facebook.com/example-business"
      },
      {
        "publisher_id": "bing",
        "publisher_status": "LIVE",
        "publisher_url": "https://www.bing.com/maps?example"
      }
    ]
  }
}
Restricted endpoint. Citations endpoints are only available to billing accounts that have been explicitly granted access by the GMBapi team. Calling this endpoint without that permission returns 403 Forbidden. Contact GMBapi support if you need access.
Returns the citation publishing statuses for a single location, including the publishers where the location has been submitted, each publisher’s current status, and the public listing URL.
This endpoint reports the publishing state of citations that have already been submitted through the GMBapi citations service. To enable citations for a location, use POST /citations/activate.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

account_id
string

Account ID. Required when using an organization token.

location_id
string
required

Location ID to retrieve citation statuses for

Response

Location citation statuses response

Response containing the citation publishing statuses for a location

success
boolean

Indicates if the request was successful

data
object