Number of emails to return (max 100).
Number of emails to skip.
Filter by status: queued, sent, delivered, bounced, complained.
Request
curl "https://www.unosend.co/api/v1/emails?limit=10&offset=0" \
-H "Authorization: Bearer un_xxxxxxxxxx"
Response
{
"data": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"from": "[email protected]",
"to": ["[email protected]"],
"subject": "Hello World",
"status": "delivered",
"created_at": "2024-01-15T10:30:00.000Z"
}
],
"total": 42,
"limit": 10,
"offset": 0
}