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

# List emails

> Returns a paginated list of all emails sent from the project, ordered by send date descending. Includes delivery status for each message.

### Requirements

- **Permission:** `emails:read`.
- **Project access:** the path project must match the API key's project.



## OpenAPI

````yaml /signal/api-reference/openapi.json get /v1/projects/{projectId}/emails
openapi: 3.1.0
info:
  title: Apollo Signal API
  version: 1.0.0
  description: >-
    Public REST API for transactional email, contacts, audiences, webhooks,
    metrics, projects, and sending domains.
servers:
  - url: https://api.signal.apollodeploy.com
    description: Production
security: []
tags:
  - name: Emails
    description: Send, inspect, cancel, validate, and stream transactional email activity.
  - name: Metrics
    description: Read project, topic, message, and deliverability analytics.
  - name: Suppressions
    description: Manage addresses that Apollo Signal must not send to.
  - name: Segments
    description: Create dynamic contact groups and inspect their membership.
  - name: Topics
    description: Manage subscription topics and topic membership.
  - name: Contact properties
    description: Define the custom fields available on project contacts.
  - name: Contacts
    description: >-
      Manage contacts, audience membership, images, activity, and engagement
      data.
  - name: Webhooks
    description: Manage webhook endpoints, deliveries, tests, and replays.
  - name: API key usage
    description: Inspect API key metadata and request usage without exposing raw keys.
  - name: Projects
    description: Inspect projects and project-scoped email logs.
  - name: Sending domains
    description: >-
      Register, verify, inspect, and remove sending domains and BIMI
      configuration.
paths:
  /v1/projects/{projectId}/emails:
    get:
      tags:
        - Projects
      summary: List emails
      description: >-
        Returns a paginated list of all emails sent from the project, ordered by
        send date descending. Includes delivery status for each message.


        ### Requirements


        - **Permission:** `emails:read`.

        - **Project access:** the path project must match the API key's project.
      operationId: listEmails
      parameters:
        - name: projectId
          in: path
          description: The project whose email history to retrieve.
          required: true
          deprecated: false
          explode: false
          schema:
            type: string
            title: String
        - name: page
          in: query
          description: '1-based page number (default: 1).'
          required: false
          deprecated: false
          explode: false
          schema:
            type: integer
            format: int32
            title: Int
        - name: size
          in: query
          description: 'Number of emails per page (default: 20, max: 100).'
          required: false
          deprecated: false
          explode: false
          schema:
            type: integer
            format: int32
            title: Int
      responses:
        '200':
          description: Paginated list of email records.
          headers: {}
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/com.apollodeploy.signal.core.pagination.Page_com.apollodeploy.signal.feature.email.api.model.EmailDetailResponse
        '401':
          description: Missing or invalid credentials.
          headers: {}
          content:
            application/problem+json:
              schema:
                $ref: >-
                  #/components/schemas/com.apollodeploy.commons.core.error.ApiProblem
        '403':
          description: >-
            The credential lacks the required permission or cannot access this
            project.
          headers: {}
          content:
            application/problem+json:
              schema:
                $ref: >-
                  #/components/schemas/com.apollodeploy.commons.core.error.ApiProblem
        '404':
          description: Project not found.
          headers: {}
          content:
            application/problem+json:
              schema:
                $ref: >-
                  #/components/schemas/com.apollodeploy.commons.core.error.ApiProblem
      deprecated: false
      security:
        - bearerAuth: []
      x-codeSamples:
        - lang: TypeScript
          label: TypeScript
          source: >-
            import { createApolloSignalApiClient } from
            "@apollo-deploy/signal-sdk";


            const signal = createApolloSignalApiClient({ apiKey: "ap_signal_..."
            });


            const result = await signal.emails.listEmails(/* params */);


            console.log(result);
        - lang: Python
          label: Python
          source: |-
            from apollo_signal import SignalClient

            signal = SignalClient(api_key="ap_signal_...")

            result = signal.emails.listEmails(# params)

            print(result)
        - lang: Go
          label: Go
          source: >-
            import signal "github.com/apollo-deploy/signal-sdk-go"


            client := signal.NewClient("ap_signal_...")


            result, err := client.Emails.ListEmails(context.Background() /*
            params */)

            if err != nil {
                log.Fatal(err)
            }

            fmt.Println(result)
        - lang: Java
          label: Java
          source: |-
            import com.apollodeploy.signal.SignalClient;

            SignalClient signal = new SignalClient("ap_signal_...");

            var result = signal.emails().listEmails(/* params */);
            System.out.println(result);
        - lang: Kotlin
          label: Kotlin
          source: |-
            import com.apollodeploy.signal.SignalClient

            val signal = SignalClient("ap_signal_...")

            val result = signal.emails.listEmails(/* params */)
            println(result)
        - lang: Ruby
          label: Ruby
          source: |-
            require "apollo_signal"

            signal = ApolloSignal::Client.new(api_key: "ap_signal_...")

            result = signal.emails.listEmails(# params)
            puts result
        - lang: PHP
          label: PHP
          source: |-
            use ApolloSignal\SignalClient;

            $signal = new SignalClient("ap_signal_...");

            $result = $signal->emails->listEmails(/* params */);
            var_dump($result);
        - lang: Rust
          label: Rust
          source: |-
            use apollo_signal::SignalClient;

            let signal = SignalClient::new("ap_signal_...");

            let result = signal.emails.listEmails(/* params */).await?;
            println!("{:?}", result);
        - lang: C#
          label: .NET
          source: |-
            using ApolloSignal;

            var signal = new SignalClient("ap_signal_...");

            var result = await signal.Emails.ListEmailsAsync(/* params */);
            Console.WriteLine(result);
components:
  schemas:
    com.apollodeploy.signal.core.pagination.Page_com.apollodeploy.signal.feature.email.api.model.EmailDetailResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: >-
              #/components/schemas/com.apollodeploy.signal.feature.email.api.model.EmailDetailResponse
          title: List<EmailDetailResponse>
        page:
          $ref: >-
            #/components/schemas/com.apollodeploy.signal.core.pagination.PageInfo
      required:
        - data
        - page
      title: Page<EmailDetailResponse>
    com.apollodeploy.commons.core.error.ApiProblem:
      type: object
      properties:
        code:
          type: string
          title: ErrorCode
        detail:
          type: string
          title: String
        errors:
          type: array
          items:
            $ref: >-
              #/components/schemas/com.apollodeploy.commons.core.error.FieldProblem
          title: List<FieldProblem>
        instance:
          type: string
          title: ProblemInstance
        requestId:
          type: string
          title: String
        status:
          type: integer
          format: int32
          title: Int
        title:
          type: string
          title: String
        type:
          type: string
          title: ProblemType
      required:
        - code
        - status
        - title
        - type
      title: ApiProblem
    com.apollodeploy.signal.feature.email.api.model.EmailDetailResponse:
      type: object
      properties:
        bcc:
          type: array
          items:
            type: string
            title: String
          title: List<String>
        cc:
          type: array
          items:
            type: string
            title: String
          title: List<String>
        createdAt:
          type: string
          title: String
        error:
          type: string
          title: String
        from:
          type: string
          title: String
        html:
          type: string
          title: String
        id:
          type: string
          title: String
        messageId:
          type: string
          title: String
        metadata:
          type: object
          additionalProperties:
            type: string
            title: String
          title: Map<String,String>
        replyTo:
          type: string
          title: String
        sentAt:
          type: string
          title: String
        status:
          type: string
          title: String
        subject:
          type: string
          title: String
        tags:
          type: object
          additionalProperties:
            type: string
            title: String
          title: Map<String,String>
        testMode:
          type: boolean
          title: Boolean
        text:
          type: string
          title: String
        to:
          type: array
          items:
            type: string
            title: String
          title: List<String>
        topicId:
          type: string
          title: String
        updatedAt:
          type: string
          title: String
      required:
        - createdAt
        - from
        - id
        - status
        - subject
        - testMode
        - to
      title: EmailDetailResponse
    com.apollodeploy.signal.core.pagination.PageInfo:
      type: object
      properties:
        hasNextPage:
          type: boolean
          title: Boolean
        hasPreviousPage:
          type: boolean
          title: Boolean
        page:
          type: integer
          format: int32
          title: Int
        size:
          type: integer
          format: int32
          title: Int
        total:
          type: integer
          format: int64
          title: Long
        totalPages:
          type: integer
          format: int32
          title: Int
      required:
        - hasNextPage
        - hasPreviousPage
        - page
        - size
        - total
        - totalPages
      title: PageInfo
    com.apollodeploy.commons.core.error.FieldProblem:
      type: object
      properties:
        detail:
          type: string
          title: String
        pointer:
          type: string
          title: String
      required:
        - detail
        - pointer
      title: FieldProblem
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Project-bound Apollo Signal API key. Keys begin with `ap_signal_` and
        must carry the permission shown on the operation.

````