List received mail
/v1/inboundSecret key — sk_… or sk_test_… · Base URL https://api.volanea.com
Received messages, newest first, cursor-paginated. Before this existed, inbound mail was reachable only as GET /v1/emails?source=inbound. Note that the recipient's local part preserves its case (RFC 5321 §2.4), so a ticket+AbC123@… routing token survives the round trip and can be matched against what POST /v1/send put in replyTo; only the domain is lowercased.
Query parameters
cursorstringPagination cursor — an OPAQUE token. Take the `nextCursor` from the previous page and send it back unchanged. Do not parse it, do not coerce it to a number, and do not construct one: the format is `<unixMs>.<objectId>` today and may change. A cursor that cannot be parsed is rejected with 422 `validation_error` rather than silently restarting at page one.
limitintegerPage size (1–200, default 50).
Response
A page of received messages.
dataobject[]requiredemailIdstringrequiredUse with `GET /v1/emails/{id}` to read the stored body.
contactIdstring | nullThe sender, upserted as a contact at ingest.
tostringrequiredThe recipient exactly as stored. Only the domain is lowercased — the local part keeps its case, because a Reply-To routing address (`ticket+AbC123XyZ@…`) carries a case-sensitive token.
subjectstringrequiredfromEmailemailrequiredfromNamestring | nullstatusenumrequiredreceivedcreatedAtdate-timerequired
nextCursorstring | nullrequiredOpaque token. Pass back as `cursor` verbatim to fetch the next page; `null` when there are no more rows.
Errors
Every failure returns the standard envelope — branch on `code`, never on the wording of `error`.
401Missing or invalid API key.422Request validation failed (code `validation_error`, 422).
Request
curl https://api.volanea.com/v1/inbound?cursor=value&limit=50 \
-H "Authorization: Bearer sk_..."Response
200 · application/json
{
"success": true,
"data": {
"data": [
{
"emailId": "em_1c4f",
"contactId": "con_5e90",
"to": "ada@example.com",
"subject": "Your order shipped",
"fromEmail": "hello@yourdomain.com",
"fromName": "Acme",
"status": "received",
"createdAt": "2026-01-01T09:00:00.000Z"
}
],
"nextCursor": "<nextCursor>"
}
}92 endpoints · OpenAPI document