GET /v1/emails
Returns a cursor page of message summaries. Combine the filters below with limit and cursor; keep the filters constant across a walk.
Query parameters
string
Filter by message status — e.g.
delivered, bounced, queued, complained.string
inbound or outbound.string
Search recipient, sender, or subject.
integer
Page size,
1–100.string
The
nextCursor from the previous response.Headers
header
Scopes the listing to one project for account-wide keys (alias:
X-Drin-Sender).Request
Response
200 OK — a page of message summaries plus a nextCursor. Each summary omits the body and event lifecycle; fetch those with GET /v1/emails/{id}.
200 OK
Reaching the end. When
nextCursor is null, there are no more results. See Pagination for the full walk and the SDK’s auto-paginating iterator.