> ## Documentation Index
> Fetch the complete documentation index at: https://kavenio.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Google Business location details

> Returns Google Business location details for a connected account.



## OpenAPI

````yaml /api/openapi.json get /v1/accounts/{accountId}/gmb-location-details
openapi: 3.1.0
info:
  title: Kavenio API
  version: 1.0.0
  license:
    name: Proprietary
    url: https://kavenio.com/terms
  description: Generated OpenAPI document for the stable Kavenio public API.
servers:
  - url: https://api.kavenio.com
security:
  - bearerAuth: []
tags:
  - name: API keys
    description: Manage Kavenio API keys for the authenticated user.
  - name: Integrations
    description: Connect automation clients and manage workflow subscriptions.
  - name: Feature requests
    description: Submit feature requests from authenticated users.
  - name: Posts
    description: Create, schedule, update, and manage post lifecycle actions.
  - name: Queue
    description: Manage reusable post queue schedules and preview slots.
  - name: Media
    description: Upload, presign, and validate media assets.
  - name: Validation
    description: Validate post payloads and platform content length limits.
  - name: Connect
    description: Start and complete account connection flows.
  - name: Accounts
    description: Manage connected social accounts and account health.
  - name: Telegram
    description: Manage Telegram-specific connected account settings.
  - name: Discord
    description: Manage Discord messages, roles, pins, events, and settings.
  - name: Google Business
    description: Manage Google Business locations, reviews, and helpers.
  - name: Ads
    description: Create, read, cancel, and inspect advertising resources.
  - name: Ad audiences
    description: Manage advertising audiences and audience members.
  - name: Ad catalogs
    description: Inspect advertising catalogs and product sets.
  - name: Ad targeting
    description: Search targeting entities and estimate audience reach.
  - name: Ad conversions
    description: Manage conversion destinations and send conversion events.
  - name: Ad leads
    description: Manage lead forms and retrieve advertising leads.
  - name: Tracking tags
    description: Manage Meta tracking tags and tag sharing.
  - name: Platform credentials
    description: Manage organization platform app credentials.
  - name: Analytics
    description: Read provider analytics and operational inbox data.
  - name: WhatsApp conversions
    description: Read and send WhatsApp conversion events.
  - name: Activity
    description: Read operational activity events.
  - name: Webhooks
    description: Manage webhook endpoints and delivery logs.
paths:
  /v1/accounts/{accountId}/gmb-location-details:
    get:
      tags:
        - Google Business
      summary: Get Google Business location details
      description: Returns Google Business location details for a connected account.
      operationId: getGoogleBusinessLocationDetails
      parameters:
        - in: path
          name: accountId
          schema:
            type: string
            minLength: 16
            maxLength: 16
            pattern: ^[abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ]{16}$
          required: true
        - in: query
          name: locationId
          schema:
            type: string
            minLength: 1
        - in: query
          name: readMask
          schema:
            type: string
            minLength: 1
      responses:
        '200':
          description: Google Business location details returned.
          content:
            application/json:
              schema:
                anyOf:
                  - type: object
                    properties:
                      ok:
                        type: boolean
                        x-kavenio-const: true
                      data:
                        type: object
                        properties:
                          success:
                            type: boolean
                          accountId:
                            type: string
                            minLength: 16
                            maxLength: 16
                            pattern: >-
                              ^[abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ]{16}$
                          locationId:
                            type: string
                            minLength: 1
                          location:
                            type: object
                            properties:
                              id:
                                type: string
                                minLength: 1
                              accountId:
                                type: string
                                minLength: 1
                              accountName:
                                type: string
                                minLength: 1
                              name:
                                type: string
                                minLength: 1
                              resourceName:
                                type: string
                                minLength: 1
                              title:
                                type: string
                                minLength: 1
                              address:
                                type: string
                                minLength: 1
                              category:
                                type: string
                                minLength: 1
                              storeCode:
                                type: string
                                minLength: 1
                              placeId:
                                type: string
                                minLength: 1
                              mapsUri:
                                type: string
                                format: uri
                              reviewUrl:
                                type: string
                                format: uri
                              websiteUri:
                                type: string
                                format: uri
                              phoneNumber:
                                type: string
                                minLength: 1
                              isVerified:
                                type: boolean
                              selected:
                                type: boolean
                              canPublish:
                                type: boolean
                              missingPermissions:
                                type: array
                                items:
                                  type: string
                                  minLength: 1
                            required:
                              - id
                            additionalProperties: false
                          title:
                            type: string
                            minLength: 1
                          phoneNumbers:
                            type: object
                            propertyNames:
                              type: string
                            additionalProperties: {}
                          categories:
                            type: object
                            propertyNames:
                              type: string
                            additionalProperties: {}
                          storefrontAddress:
                            type: object
                            propertyNames:
                              type: string
                            additionalProperties: {}
                          websiteUri:
                            type: string
                            format: uri
                          regularHours:
                            type: object
                            propertyNames:
                              type: string
                            additionalProperties: {}
                          specialHours:
                            type: object
                            propertyNames:
                              type: string
                            additionalProperties: {}
                          serviceArea:
                            type: object
                            propertyNames:
                              type: string
                            additionalProperties: {}
                          serviceItems:
                            type: array
                            items:
                              type: object
                              propertyNames:
                                type: string
                              additionalProperties: {}
                          profile:
                            type: object
                            propertyNames:
                              type: string
                            additionalProperties: {}
                          openInfo:
                            type: object
                            propertyNames:
                              type: string
                            additionalProperties: {}
                          metadata:
                            type: object
                            propertyNames:
                              type: string
                            additionalProperties: {}
                          moreHours:
                            type: array
                            items:
                              type: object
                              propertyNames:
                                type: string
                              additionalProperties: {}
                          fetchedAt:
                            type: string
                            minLength: 1
                        required:
                          - success
                          - accountId
                          - locationId
                        additionalProperties: false
                    required:
                      - ok
                      - data
                    additionalProperties: false
                  - type: object
                    properties:
                      ok:
                        type: boolean
                        x-kavenio-const: false
                      error:
                        type: object
                        properties:
                          code:
                            type: string
                            minLength: 1
                          message:
                            type: string
                            minLength: 1
                          details: {}
                        required:
                          - code
                          - message
                        additionalProperties: false
                    required:
                      - ok
                      - error
                    additionalProperties: false
        '401':
          description: Authentication failed.
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    x-kavenio-const: false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        minLength: 1
                      message:
                        type: string
                        minLength: 1
                      details: {}
                    required:
                      - code
                      - message
                    additionalProperties: false
                required:
                  - ok
                  - error
                additionalProperties: false
        '404':
          description: Connected account or location not found.
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    x-kavenio-const: false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        minLength: 1
                      message:
                        type: string
                        minLength: 1
                      details: {}
                    required:
                      - code
                      - message
                    additionalProperties: false
                required:
                  - ok
                  - error
                additionalProperties: false
        '422':
          description: Request validation failed.
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    x-kavenio-const: false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        minLength: 1
                      message:
                        type: string
                        minLength: 1
                      details: {}
                    required:
                      - code
                      - message
                    additionalProperties: false
                required:
                  - ok
                  - error
                additionalProperties: false
        '500':
          description: Google Business location detail lookup failed.
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    x-kavenio-const: false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        minLength: 1
                      message:
                        type: string
                        minLength: 1
                      details: {}
                    required:
                      - code
                      - message
                    additionalProperties: false
                required:
                  - ok
                  - error
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Clerk session or OAuth token

````