Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get a sent email snapshot, HTML body, and event timeline by emailSendId.
cURL
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" } ] }
emailSendId
emailBody
curl "https://api.sequenzy.com/api/v1/email-sends/send_123" \ -H "Authorization: Bearer API_KEY"