Skip to main content
GET
/
v1
/
inbound
List Received Emails
curl --request GET \
  --url https://api.example.com/v1/inbound
limit
integer
default:"20"
Number of emails to return (max 100).
offset
integer
default:"0"
Number of emails to skip.
to
string
Filter by recipient address.

Request

cURL
curl "https://www.unosend.co/api/v1/inbound?limit=10" \
  -H "Authorization: Bearer un_xxxxxxxxxx"

Response

200
{
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "from": "[email protected]",
      "to": ["[email protected]"],
      "subject": "Re: Your inquiry",
      "received_at": "2024-01-15T10:30:00.000Z"
    }
  ],
  "total": 15,
  "limit": 10,
  "offset": 0
}