← Back to API Reference

GET /emails/{email_id}

Retrieve Email

Get delivery state and metadata for one sent email.

Request (cURL)

curl -X GET "http://localhost:8080/v1/emails/em_123" \
  -H "Authorization: Bearer <API_KEY>"

Response Example

{
  "object": "email",
  "id": "em_123",
  "status": "queued",
  "to": [
    "customer@example.com"
  ]
}