GET
/emails
List Sent Emails
List recently sent emails in reverse chronological order.
List recently sent emails in reverse chronological order.
curl -X GET "http://localhost:8080/v1/emails" \ -H "Authorization: Bearer <API_KEY>"
{
"object": "list",
"data": [
{
"id": "em_123",
"status": "sent",
"to": [
"customer@example.com"
]
}
]
}