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

# Get Google Business Profiles



## OpenAPI

````yaml https://dev-api.cattix.com/openapi.json get /api/v1/local-seo/profiles
openapi: 3.1.0
info:
  title: CATTIX API
  description: CATTIX Backend API
  version: 0.107.0
servers:
  - url: http://localhost:8000
    description: Local
  - url: https://dev-api.cattix.com
    description: Development
  - url: https://staging-api.cattix.com
    description: Staging
  - url: https://api.cattix.com
    description: Production
security: []
paths:
  /api/v1/local-seo/profiles:
    get:
      tags:
        - Local SEO
      summary: Get Google Business Profiles
      operationId: get_google_business_profiles_api_v1_local_seo_profiles_get
      parameters:
        - name: token_id
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
              - type: 'null'
            description: Optional specific Token ID
            title: Token Id
          description: Optional specific Token ID
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProfileWithLocationIdsSchema'
                title: >-
                  Response Get Google Business Profiles Api V1 Local Seo
                  Profiles Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2PasswordBearer: []
components:
  schemas:
    ProfileWithLocationIdsSchema:
      properties:
        id:
          type: string
          title: Id
        account_name:
          type: string
          title: Account Name
        locations:
          items:
            $ref: '#/components/schemas/LocationBasicInfoSchema'
          type: array
          title: Locations
      type: object
      required:
        - id
        - account_name
      title: ProfileWithLocationIdsSchema
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    LocationBasicInfoSchema:
      properties:
        id:
          type: string
          title: Id
        title:
          type: string
          title: Title
        storefront_address:
          anyOf:
            - $ref: '#/components/schemas/GooglePostalAddressSchema'
            - type: 'null'
      type: object
      required:
        - id
        - title
      title: LocationBasicInfoSchema
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    GooglePostalAddressSchema:
      properties:
        region_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Region Code
          description: >-
            CLDR region code of the country/region of the address. This is
            usually a two-letter code (e.g. 'UA', 'US').
        language_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Language Code
          description: The BCP-47 language code of the contents of this address (if known).
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Postal Code
          description: Postal code of the address.
        administrative_area:
          anyOf:
            - type: string
            - type: 'null'
          title: Administrative Area
          description: >-
            Top-level administrative subdivision of the country/region (e.g.
            state, province, oblast).
        locality:
          anyOf:
            - type: string
            - type: 'null'
          title: Locality
          description: Generally refers to the city/town portion of the address.
        sublocality:
          anyOf:
            - type: string
            - type: 'null'
          title: Sublocality
          description: Sublocality of the address (e.g. neighborhood, district).
        address_lines:
          items:
            type: string
          type: array
          title: Address Lines
          description: >-
            Unstructured address lines describing the lower levels of an
            address.
      type: object
      title: GooglePostalAddressSchema
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: api/v1/users/authorization/token

````