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

# List inboxes

> Lists all inboxes for the active team



## OpenAPI

````yaml /swagger.yml get /public/inboxes
openapi: 3.0.0
info:
  title: Public API Docs
  description: Clerk Public API
  version: '1.0'
  contact: {}
servers:
  - url: https://web-api.clerk.chat
    description: Production server
  - url: http://localhost:3000
    description: Production server
security: []
tags: []
paths:
  /public/inboxes:
    get:
      tags:
        - Inboxes
      summary: List inboxes
      description: Lists all inboxes for the active team
      operationId: PublicInboxesController_listInboxes
      parameters:
        - name: phone
          in: query
          required: false
          description: Filter inboxes by phone number
          schema:
            type: string
        - name: limit
          in: query
          required: false
          description: Number of items to return (max 50)
          example: 10
          schema:
            type: number
        - name: page
          in: query
          required: false
          description: Page number
          example: 1
          schema:
            type: number
      responses:
        '200':
          description: A paginated list of inboxes
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedInboxResponse'
        '400':
          description: Invalid request body
        '401':
          description: Unauthorized request
        '403':
          description: You do not have permission to access this resource
        '404':
          description: Resource not found
        '422':
          description: Invalid request parameters
        '429':
          description: Too many requests for this resource
        '500':
          description: Internal server error
      security:
        - api_key: []
components:
  schemas:
    PaginatedInboxResponse:
      type: object
      required:
        - data
        - total
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/InboxObject'
        links:
          type: object
          properties:
            next:
              type: string
              description: The URL for the next page
            prev:
              type: string
              description: The URL for the previous page
            self:
              type: string
              description: The URL for the current page
        total:
          type: number
          description: The total number of inboxes
          example: 1
    InboxObject:
      type: object
      description: Represents an inbox resource
      required:
        - id
      properties:
        id:
          type: string
          format: uuid
          description: The ID of the inbox
          example: 00000000-0000-0000-0000-000000000000
        name:
          type: string
          description: The name of the inbox
          example: Sales Line
          nullable: true
        phone:
          type: string
          description: The phone number of the inbox
          example: '+1415456789'
          nullable: true
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: apiKey

````