Get Email

Retrieve details for a specific email

GET/v1/send/emails/{id}

Get the full details and status of a sent email.

Requires:send:read

Path Parameters

idstringrequired
Email message ID (e.g., msg_abc123def456)
Get email details
curl "https://api.do.dev/v1/send/emails/msg_abc123def456" \
-H "Authorization: Bearer YOUR_API_KEY"
Response200
{
"id": "msg_abc123def456",
"from": { "email": "hello@example.com", "name": "My App" },
"to": ["user@example.com"],
"subject": "Welcome!",
"status": "sent"
}