Skip to main content
GET
/
emails
Message Audit Logs
curl --request GET \
  --url https://api-prod.syntr.co/api/v1/email-marketing/emails \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": [
    {
      "id": "msg_1",
      "email": "user@test.com",
      "status": "delivered",
      "sent_at": "2024-03-18T10:00:00Z",
      "opened_at": null
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 100,
    "pages": 5
  }
}

URL Parameters

page
INTEGER
Page number
status
STRING
Filter: sent, failed, bounced, complaint, opened, clicked
Search by email, name, or subject
track_id
STRING
Search by unique tracking ID
{
  "success": true,
  "data": [
    {
      "id": "msg_1",
      "email": "user@test.com",
      "status": "delivered",
      "sent_at": "2024-03-18T10:00:00Z",
      "opened_at": null
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 100,
    "pages": 5
  }
}