> ## Documentation Index
> Fetch the complete documentation index at: https://openmail-docs-reputation-lifecycle-webhooks.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List inboxes

> List all inboxes for your account. Supports pagination.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/inboxes
openapi: 3.0.3
info:
  title: OpenMail API
  description: >-
    Email infrastructure API for AI agents. Create inboxes, send and receive
    email, and get real-time notifications via webhooks.
  version: 1.0.0
  license:
    name: Proprietary
servers:
  - url: https://api.openmail.sh
security:
  - bearerAuth: []
paths:
  /v1/inboxes:
    get:
      summary: List inboxes
      description: List all inboxes for your account. Supports pagination.
      operationId: listInboxes
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            default: 50
            maximum: 100
          description: Max results to return
        - name: offset
          in: query
          schema:
            type: integer
            default: 0
          description: Number of results to skip
        - name: podId
          in: query
          schema:
            type: string
          description: >-
            Filter to inboxes in a single pod. Accepts the pod ID or your own
            `clientId`. An unknown value returns an empty list.
      responses:
        '200':
          description: List of inboxes
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Inbox'
                  total:
                    type: integer
components:
  schemas:
    Inbox:
      type: object
      properties:
        id:
          type: string
          description: OpenMail inbox ID
        podId:
          type: string
          description: >-
            ID of the pod this inbox belongs to. Inboxes created without an
            explicit pod land in your account's default pod.
        address:
          type: string
          format: email
          description: Full email address
        displayName:
          type: string
          description: Sender display name
          nullable: true
        createdAt:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key

````