Skip to content

List emails

GET /emails

Return recent emails in reverse chronological order.

ParamTypeDefaultDescription
status_filterstringOne of queued, sent, delivered, bounced, failed, suppressed.
limitint50Max 100.
offsetint0For pagination.
Terminal window
curl "https://mail.3ava.com/api/emails?status_filter=bounced&limit=20" \
-H "Authorization: Bearer am_YOUR_KEY"
{
"data": [
{
"id": "a1b2...",
"from": "[email protected]",
"to": ["[email protected]"],
"subject": "Your receipt",
"status": "delivered",
"created_at": "2026-04-22T22:30:00Z",
"sent_at": "2026-04-22T22:30:02Z",
"delivered_at": "2026-04-22T22:30:04Z"
}
]
}