> ## 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 inbox conversations

> Returns paginated DM conversations for the authenticated user, optionally filtered by account, platform, and status.



## OpenAPI

````yaml /api-reference/openapi.json get /inbox/conversations
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/conversations:
    get:
      tags:
        - Inbox
      summary: List inbox conversations
      description: >-
        Returns paginated DM conversations for the authenticated user,
        optionally filtered by account, platform, and status.
      parameters:
        - description: Filter by connected account ID
          name: account_id
          in: query
          schema:
            type: string
        - description: >-
            Filter by brand ID (returns only conversations from accounts in this
            brand)
          name: brand_id
          in: query
          schema:
            type: string
        - description: Filter by Facebook/Instagram page ID (for multi-page accounts)
          name: page_id
          in: query
          schema:
            type: string
        - description: Filter by platform (instagram, facebook, …)
          name: platform
          in: query
          schema:
            type: string
        - description: 'Conversation status: active (default) or archived'
          name: status
          in: query
          schema:
            type: string
            enum:
              - active
              - archived
        - description: Max results (1–100, default 25)
          name: limit
          in: query
          schema:
            type: integer
        - description: Pagination cursor from previous response
          name: cursor
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Paginated list of conversations
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ConversationsListResponse'
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api_endpoints.ConversationsListResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: >-
              #/components/schemas/social-api_ai_core_api_service.ConversationRow
        last_synced_at:
          type: string
        pagination:
          $ref: '#/components/schemas/api_endpoints.InboxPagination'
        sync_state:
          description: >-
            SyncState is "idle", "syncing", or "failed" for this account's

            conversation-list sync. Additive: reading it never triggers a sync,
            and a

            client that ignores it sees exactly the previous response.
          type: string
          enum:
            - idle
            - syncing
            - failed
          example: idle
    api_endpoints.ErrorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/api_endpoints.ErrorBody'
    social-api_ai_core_api_service.ConversationRow:
      type: object
      properties:
        account_id:
          type: string
        created_at:
          type: string
        id:
          type: string
        last_message:
          type: string
        last_message_at:
          type: string
        page_id:
          type: string
        participant_id:
          type: string
        participant_name:
          type: string
        participant_picture:
          type: string
        platform:
          type: string
        platform_id:
          type: string
        status:
          type: string
        unread_count:
          type: integer
        updated_at:
          type: string
        user_id:
          type: string
    api_endpoints.InboxPagination:
      type: object
      properties:
        has_more:
          type: boolean
        next_cursor:
          type: string
    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

````