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

> List all pods for your account. The default pod is always returned first. Supports pagination.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/pods
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/pods:
    get:
      summary: List pods
      description: >-
        List all pods for your account. The default pod is always returned
        first. Supports pagination.
      operationId: listPods
      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
      responses:
        '200':
          description: List of pods
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Pod'
                  total:
                    type: integer
components:
  schemas:
    Pod:
      type: object
      properties:
        id:
          type: string
          description: OpenMail pod ID
        clientId:
          type: string
          nullable: true
          description: Your own identifier for the pod, if set.
        name:
          type: string
          nullable: true
          description: Human-readable label, if set.
        isDefault:
          type: boolean
          description: >-
            Whether this is the account's default pod. Every account has exactly
            one; it is created automatically and cannot be deleted.
        createdAt:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key

````