eusend
Emails

Email Details

Get a single email and its full event history — opens, clicks, delivery, bounces.

GET/emails/:id
request
curl "https://api.eusend.dev/emails/9a8b7c6d-5e4f-4a3b-8c1d-0e9f8a7b6c5d" \
  -H "Authorization: Bearer eu_live_xxxxxxxxxxxx"
response — 200 OK
{
  "id": "9a8b7c6d-5e4f-4a3b-8c1d-0e9f8a7b6c5d",
  "from": "noreply@acme.com",
  "to": ["alice@example.com"],
  "subject": "Your order has shipped",
  "status": "delivered",
  "scheduledAt": null,
  "createdAt": "2026-05-20T10:00:00.000Z",
  "events": [
    { "type": "sent",      "createdAt": "2026-05-20T10:00:01.000Z" },
    { "type": "delivered", "createdAt": "2026-05-20T10:00:03.000Z" },
    { "type": "opened",    "createdAt": "2026-05-20T10:05:12.000Z" },
    { "type": "clicked",   "createdAt": "2026-05-20T10:05:30.000Z" }
  ]
}