Skip to main content
GET
/
api
/
v1
/
email-sends
/
{emailSendId}
Get Email Send
curl --request GET \
  --url https://api.sequenzy.com/api/v1/email-sends/{emailSendId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "source": "database",
  "emailSend": {
    "id": "send_123",
    "companyId": "company_123",
    "type": "transactional",
    "recipientEmail": "user@example.com",
    "subject": "Welcome",
    "senderEmail": "hello@example.com",
    "senderName": "Acme",
    "status": "delivered",
    "suppressionReason": null,
    "emailBody": "<html><body><p>Welcome</p></body></html>",
    "sentAt": "2026-05-01T12:00:00.000Z",
    "deliveredAt": "2026-05-01T12:00:03.000Z",
    "suppressedAt": null,
    "createdAt": "2026-05-01T11:59:58.000Z"
  },
  "events": [
    {
      "id": "evt_123",
      "emailSendId": "send_123",
      "eventType": "delivery",
      "eventTime": "2026-05-01T12:00:03.000Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt

Use this file to discover all available pages before exploring further.

Get Email Send

You can retrieve a sent email by emailSendId. Email send rows are cleaned up after 14 days; when the row is gone, the API returns retained ClickHouse events and a sparse summary without emailBody.

Request

emailSendId
string
required
Email send ID.
curl "https://api.sequenzy.com/api/v1/email-sends/send_123" \
  -H "Authorization: Bearer API_KEY"

Responses

{
  "success": true,
  "source": "database",
  "emailSend": {
    "id": "send_123",
    "companyId": "company_123",
    "type": "transactional",
    "recipientEmail": "user@example.com",
    "subject": "Welcome",
    "senderEmail": "hello@example.com",
    "senderName": "Acme",
    "status": "delivered",
    "suppressionReason": null,
    "emailBody": "<html><body><p>Welcome</p></body></html>",
    "sentAt": "2026-05-01T12:00:00.000Z",
    "deliveredAt": "2026-05-01T12:00:03.000Z",
    "suppressedAt": null,
    "createdAt": "2026-05-01T11:59:58.000Z"
  },
  "events": [
    {
      "id": "evt_123",
      "emailSendId": "send_123",
      "eventType": "delivery",
      "eventTime": "2026-05-01T12:00:03.000Z"
    }
  ]
}