---
title: "List email messages"
method: GET
path: "/email_messages"
tags: ["Email Messages"]
---

# List email messages

`GET /email_messages`

Lists messages sorted newest first by `inserted_at desc, id desc`. No filters other than
cursor pagination are implemented. The legacy `/v2/emails` GET route is a backward-compatible
alias for this operation.

## Query parameters

- `page_size` integer
- `page_cursor` string

## Response `200`

Paginated list of email messages.

- EmailMessageListResponse
  - `data` EmailMessage[], required
    - `attachments` AttachmentResponse[], required
      - `content_type` string, required
      - `filename` string, required
    - `bcc` EmailAddress[], required
      - `email` string, required
      - `name` string
    - `cc` EmailAddress[], required
      - `email` string, required
      - `name` string
    - `events` MessageEvent[], required
      - `occurred_at` string, date-time, required
      - `payload` object
      - `type` 'queued' | 'deferred' | 'scheduled' | 'cancelled' | 'sandbox' | 'sending' | 'sent' | 'failed' | 'delivered' | 'bounced' | 'complained' | 'rejected' | 'opened' | 'clicked' | 'unsubscribed', required
    - `from` EmailAddress, required
      - `email` string, required
      - `name` string
    - `id` string, uuid, required
    - `inline_css` boolean — Present when true in the immediate create response. Not persisted; absent on subsequent GET requests.
    - `inserted_at` string, date-time, required
    - `record_type` 'email_message', required
    - `reply_to` string, nullable, required
    - `sandbox` boolean — Present when sandbox mode was used.
    - `send_at` string, date-time — Present when a send_at value was stored. Persists even after the scheduled send has been processed or cancelled.
    - `status` 'queued' | 'scheduled' | 'cancelled' | 'sandbox' | 'sending' | 'sent' | 'failed' | 'deferred' | 'delivered' | 'bounced' | 'complained' | 'rejected' | 'opened' | 'clicked' | 'unsubscribed', required — Current status of an email message. Lifecycle statuses (queued, scheduled, etc.) are set on creation. Delivery statuses (delivered, bounced, etc.) are updated by delivery event consumers.
    - `subject` string, required
    - `suppressed` object[] — Present when one or more recipients were suppressed at send time. Each entry lists the suppressed recipient, reason, scope, and whether the block was overridable.
      - `override_allowed` boolean
      - `reason` string
      - `scope` string
      - `to` string, email
    - `template_id` string, uuid, nullable, required
    - `template_variables` object, required
    - `to` EmailAddress[], required
      - `email` string, required
      - `name` string
  - `meta` EmailPaginationMeta, required
    - `page_cursor` string — Cursor for the next page, when more results are available.
    - `page_size` integer, required

## Other responses

- `401` — Not authorized (10006).

## Changes

- **2026-07-16** `2fb3b617430a` — 2 warning, 1 info
  - added the new `recipient_suppressed` enum value to the `errors/items/code` response property for the response status `401`
  - added the new `reputation_suspended` enum value to the `errors/items/code` response property for the response status `401`
  - added the optional property `suppressed` to the response with the `401` status
- **2026-07-12** `b3c5aebde44c` — 1 breaking, 2 warning
  - removed the required property `data/items/idempotency_key` from the response with the `200` status
  - added the new `10027` enum value to the `errors/items/code` response property for the response status `401`
  - added the new `10036` enum value to the `errors/items/code` response property for the response status `401`
- **2026-07-07** `6ef0ae248bf7` — 1 info
  - endpoint added
- **2026-07-02** `224ed0d8a5c3` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/team-telnyx/apis/telnyx-api-2/changes/email_messages/get.md)

---

[API](https://skmtc.dev/team-telnyx/apis/telnyx-api-2.md) · [All operations](https://skmtc.dev/team-telnyx/apis/telnyx-api-2/llms.txt) · [OpenAPI document](https://skmtc.dev/team-telnyx/apis/telnyx-api-2/revisions/eb02d7e7280b?raw)
