Skip to main content
GET
/
api
/
v1
/
local-seo
/
profiles
Get Google Business Profiles
curl --request GET \
  --url http://localhost:8000/api/v1/local-seo/profiles \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "account_name": "<string>",
    "locations": [
      {
        "id": "<string>",
        "title": "<string>",
        "storefront_address": {
          "region_code": "<string>",
          "language_code": "<string>",
          "postal_code": "<string>",
          "administrative_area": "<string>",
          "locality": "<string>",
          "sublocality": "<string>",
          "address_lines": [
            "<string>"
          ]
        }
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

token_id
integer | null

Optional specific Token ID

Response

Successful Response

id
string
required
account_name
string
required
locations
LocationBasicInfoSchema · object[]