Number of emails to return (max 100).
Number of emails to skip.
Filter by recipient address.
Request
curl "https://api.unosend.co/inbound?limit=10" \
-H "Authorization: Bearer un_xxxxxxxxxx"
Response
{
"data": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"from": "sender@example.com",
"to": ["inbox@yourdomain.com"],
"subject": "Re: Your inquiry",
"received_at": "2024-01-15T10:30:00.000Z"
}
],
"total": 15,
"limit": 10,
"offset": 0
}