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

# Get a pending Google Profile selection

> Returns the candidate Google Business Profiles for a pending connection created when a Google login manages more than one Profile. Choose one with the select endpoint.



## OpenAPI

````yaml /api-reference/openapi.json get /accounts/pending/{connection_id}
openapi: 3.0.0
info:
  description: >-
    Unified social media inbox API. Read and respond to comments, DMs, reviews,
    and mentions across Instagram, Facebook, Threads, Google Business Profile,
    TikTok, LinkedIn, and YouTube through a single REST API. X/Twitter and
    Trustpilot coming soon.
  title: SocialAPI.AI
  contact:
    name: SocialAPI.AI Support
    email: support@social-api.ai
  license:
    name: MIT
  version: '1.0'
servers:
  - url: https://api.social-api.ai/v1
security: []
paths:
  /accounts/pending/{connection_id}:
    get:
      tags:
        - Accounts
      summary: Get a pending Google Profile selection
      description: >-
        Returns the candidate Google Business Profiles for a pending connection
        created when a Google login manages more than one Profile. Choose one
        with the select endpoint.
      parameters:
        - description: Pending connection ID
          name: connection_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/api_endpoints.PendingConnectionDetailResponse
        '404':
          description: Unknown, expired, or not owner
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api_endpoints.PendingConnectionDetailResponse:
      type: object
      properties:
        connection_id:
          type: string
        expires_at:
          type: string
          example: '2026-07-04T12:30:00Z'
        platform:
          type: string
          example: google
        profiles:
          type: array
          items:
            $ref: '#/components/schemas/api_endpoints.PendingProfile'
    api_endpoints.ErrorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/api_endpoints.ErrorBody'
    api_endpoints.PendingProfile:
      type: object
      properties:
        bio:
          type: string
          example: Wood-fired pizza since 1998
        display_name:
          type: string
          example: Joe's Pizza (Downtown)
        platform_account_id:
          type: string
          example: accounts/123/locations/456
        profile_picture_url:
          type: string
          example: ''
        username:
          type: string
          example: ''
    api_endpoints.ErrorBody:
      type: object
      properties:
        code:
          type: string
          example: resource.not_found
        message:
          type: string
          example: Account not found
        meta:
          type: object
          additionalProperties: {}
  securitySchemes:
    BearerAuth:
      description: >-
        Prefix your API key with "Bearer ". Example: `Authorization: Bearer
        sapi_key_...`
      type: apiKey
      name: Authorization
      in: header

````