---
title: "Get a single recipient's delivery state"
method: GET
path: "/email_messages/{email_id}/recipients/{recipient_id}"
tags: ["Email Messages"]
---

# Get a single recipient's delivery state

`GET /email_messages/{email_id}/recipients/{recipient_id}`

Returns the current delivery state of a single recipient, including status,
billable flag, SMTP detail, and lifecycle timestamps.
BCC recipient addresses are redacted (returned as null).

## Path parameters

- `email_id` string, uuid, required
- `recipient_id` string, uuid, required

## Response `200`

Recipient delivery state.

- EmailRecipientResponse
  - `data` EmailRecipient, required
    - `record_type` 'email_recipient', required
    - `id` string, uuid, required — Recipient UUID.
    - `message_id` string, uuid, required — Parent email message UUID.
    - `address` string, email, nullable, required — Recipient email address. Null for BCC recipients (redacted for privacy).
    - `kind` 'to' | 'cc' | 'bcc', required
    - `status` 'queued' | 'sending' | 'sent' | 'deferred' | 'delivered' | 'bounced' | 'failed' | 'gw_reject' | 'cancelled' | 'injection_timeout' | 'expired', required — Current per-recipient delivery status.
    - `billable` boolean, required — Whether this recipient's delivery is billable (set on queue acceptance).
    - `sent_at` string, date-time, nullable
    - `delivered_at` string, date-time, nullable
    - `failed_at` string, date-time, nullable
    - `smtp_code` integer, nullable — SMTP response code when available (e.g. 550 for bounces).
    - `smtp_response` string, nullable — SMTP response message when available.

## Other responses

- `401` — Not authorized (10006).
- `404` — Resource not found (10001).

## Changes

> 92 revisions in range; 1 not diffed.

- **2026-09-23** `16bfa298dc71` — 2 warning
  - added the new `expired` enum value to the `data/status` response property for the response status `200`
  - added the new `injection_timeout` enum value to the `data/status` response property for the response status `200`
- **2026-09-22** `9621f6123ebc` — 4 warning
  - added the new `10011` enum value to the `errors/items/code` response property for the response status `401`
  - added the new `10011` enum value to the `errors/items/code` response property for the response status `404`
  - added the new `domain_graduation_limit_exceeded` enum value to the `errors/items/code` response property for the response status `401`
  - added the new `domain_graduation_limit_exceeded` enum value to the `errors/items/code` response property for the response status `404`
- **2026-07-28** `b1bf96d8391e` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/team-telnyx/apis/telnyx-api-2/changes/email_messages/:email_id/recipients/:recipient_id/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/d8b8159753ee?raw)
