> ## 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.

# List Accounts with reviews

> Lists your review-capable connected Accounts, each with its live review summary (average rating, total count, last review time). Use this to build the reviews inbox navigation, then GET /inbox/reviews/{account_id} for one Account's reviews.



## OpenAPI

````yaml /api-reference/openapi.json get /inbox/reviews
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:
  /inbox/reviews:
    get:
      tags:
        - Inbox Reviews
      summary: List Accounts with reviews
      description: >-
        Lists your review-capable connected Accounts, each with its live review
        summary (average rating, total count, last review time). Use this to
        build the reviews inbox navigation, then GET /inbox/reviews/{account_id}
        for one Account's reviews.
      parameters:
        - example: google
          description: Filter by platform (google)
          name: platform
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Accounts with review summaries
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ReviewAccountsResponse'
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api_endpoints.ReviewAccountsResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/api_endpoints.ReviewAccountRow'
    api_endpoints.ErrorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/api_endpoints.ErrorBody'
    api_endpoints.ReviewAccountRow:
      type: object
      properties:
        account_id:
          type: string
          example: acc_01HZ...
        average_rating:
          type: number
          example: 4.2
        last_review_at:
          type: string
          example: '2026-06-22T02:24:05Z'
        name:
          type: string
          example: SocialAPI Profile
        platform:
          type: string
          example: google
        status:
          type: string
          enum:
            - ok
            - reconnection_required
            - error
          example: ok
        total_count:
          type: integer
          example: 87
    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

````