← Back to API Reference

GET /emails

List Sent Emails

List recently sent emails in reverse chronological order.

Request (cURL)

curl -X GET "http://localhost:8080/v1/emails" \
  -H "Authorization: Bearer <API_KEY>"

Response Example

{
  "object": "list",
  "data": [
    {
      "id": "em_123",
      "status": "sent",
      "to": [
        "customer@example.com"
      ]
    }
  ]
}