List sent emails
Lists the recent 14-day delivery history with dashboard-equivalent subject, recipient, status, type, bounce, source, pagination, and sorting filters. Successful test sends and copied-recipient bookkeeping rows are hidden; a test send that failed, bounced, or was suppressed IS listed, flagged with an isTestEmail value of true, because it is the only record of a test that never arrived.
Query parameters
Case-insensitive subject/title or recipient search. q is accepted as an alias.
Compatibility alias for search.
Case-insensitive subject/title filter. title is accepted as an alias.
Compatibility alias for subject.
Case-insensitive recipient email filter.
Delivery status. Opened includes clicked deliveries.
Filter to one email step of a sequence. Take the node ID from the steps array of the sequence metrics endpoint. Combined with automationId the two intersect.
Response
Paginated sent-email history
Example response
{
"retentionDays": 14,
"emailSends": [
{
"id": "send_123",
"companyId": "company_123",
"subject": "Welcome"
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 100,
"totalPages": 5
}
}