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

# Get pod

> Retrieve a single pod by its OpenMail ID or your own `clientId`.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/pods/{id}
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/{id}:
    get:
      summary: Get pod
      description: Retrieve a single pod by its OpenMail ID or your own `clientId`.
      operationId: getPod
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Pod ID or your own `clientId`
      responses:
        '200':
          description: Pod details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Pod'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
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
    Error:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key

````