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

# List Emails



## OpenAPI

````yaml api-reference/openapi.json get /emails
openapi: 3.0.0
info:
  title: OpenAPI Documentation Amisend
  version: 1.0.0
servers:
  - url: https://api.amisend.com
  - url: http://localhost:3015/api
security: []
tags: []
paths:
  /emails:
    get:
      tags:
        - Email
      summary: List Emails
      parameters:
        - in: query
          name: page
          schema:
            type: integer
            default: 1
          description: Page number
        - in: query
          name: limit
          schema:
            type: integer
            default: 40
            maximum: 40
          description: Maximum number of emails per page (max 40)
      responses:
        '200':
          description: List of emails
          content:
            application/json:
              schema:
                type: object
                properties:
                  total:
                    type: integer
                  page:
                    type: integer
                  pages:
                    type: integer
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/Email'
        '401':
          description: Unauthorized
        '500':
          description: Error getting emails
      security:
        - bearerAuth: []
components:
  schemas:
    Email:
      type: object
      properties:
        _id:
          type: string
        team:
          type: string
        from:
          type: string
        to:
          type: string
        subject:
          type: string
        html:
          type: string
        reply_to:
          type: string
        attachments:
          type: array
          items:
            type: object
        status:
          type: string
        scheduledAt:
          type: string
          format: date-time
        sentAt:
          type: string
          format: date-time
        createdAt:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````