Skip to main content
GET
/
v1
/
emails
/
{id}
Retrieve Email
curl --request GET \
  --url https://api.example.com/v1/emails/{id}
id
string
required
The ID of the email to retrieve.

Request

cURL
curl https://www.unosend.co/api/v1/emails/550e8400-e29b-41d4-a716-446655440000 \
  -H "Authorization: Bearer un_xxxxxxxxxx"

Response

200
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "from": "[email protected]",
  "to": ["[email protected]"],
  "subject": "Hello World",
  "html": "<h1>Welcome!</h1>",
  "status": "delivered",
  "created_at": "2024-01-15T10:30:00.000Z",
  "delivered_at": "2024-01-15T10:30:05.000Z"
}