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

# List verified (and pending) forwarding destinations

> Lists forwarding destinations and their verification status.



## OpenAPI

````yaml /openapi.json get /inbound/forward-destinations
openapi: 3.0.0
info:
  title: JetEmail API
  version: 1.0.0
  description: API documentation for JetEmail's transactional email service.
servers:
  - url: https://api.jetemail.com
    description: Production
security:
  - apiKeyAuth: []
externalDocs:
  description: Download OpenAPI Specification
  url: /openapi.json
paths:
  /inbound/forward-destinations:
    get:
      tags:
        - Inbound
      summary: List verified (and pending) forwarding destinations
      description: Lists forwarding destinations and their verification status.
      responses:
        '200':
          description: Destinations listed successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  result:
                    type: array
                    items:
                      type: object
                      properties:
                        uuid:
                          type: string
                          format: uuid
                          example: 7c1f7c14-1234-4abc-8def-0123456789ab
                        email:
                          type: string
                          format: email
                          example: team@theirinbox.com
                        verified:
                          type: integer
                          enum:
                            - 0
                            - 1
                          description: >-
                            1 once the destination owner has clicked the
                            verification link. Until 1, no inbound mail is
                            delivered to rules pointing at this address.
                          example: 1
                        verified_at:
                          type: integer
                          nullable: true
                          description: >-
                            Unix seconds when the destination was verified. Null
                            while pending.
                          example: 1735937552
                        created_at:
                          type: integer
                          example: 1735937552
                        last_modified:
                          type: integer
                          example: 1735937552
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: User information not found
        '500':
          description: Server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: Failed to list verified destinations
components:
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: API key for account management endpoints. Use your api_ prefixed token.

````