List emails
GET /emails
Return recent emails in reverse chronological order.
Query parameters
Section titled “Query parameters”| Param | Type | Default | Description |
|---|---|---|---|
status_filter | string | — | One of queued, sent, delivered, bounced, failed, suppressed. |
limit | int | 50 | Max 100. |
offset | int | 0 | For pagination. |
Example
Section titled “Example”curl "https://mail.3ava.com/api/emails?status_filter=bounced&limit=20" \ -H "Authorization: Bearer am_YOUR_KEY"Response
Section titled “Response”{ "data": [ { "id": "a1b2...", "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" } ]}