List Email Logs

GET
https://reloop.sh/api/logs/v1/emails

Query Parameters

pagestringnumberdefault: 1
limitstringnumberdefault: 10
searchstring
statusstring
domainstring
api_key_idstring
start_datestring
end_datestring
recipientstring

Return only emails sent to this recipient address

const response = await fetch("https://reloop.sh/api/logs/v1/emails?page=value&limit=value&search=value&status=value&domain=value&api_key_id=value&start_date=value&end_date=value&recipient=value", {
  method: "GET",
  headers: {
    "Authorization": "Bearer re_123456789",
  },
});

const data = await response.json();
{
  "object": "list",
  "data": [
    {
      "id": "con_123456789",
      "subject": "Welcome to Reloop",
      "fromEmail": "example_fromEmail",
      "toEmails": [
        "example_toEmails"
      ],
      "status": "example_status",
      "createdAt": "2026-03-23T10:00:00.000Z"
    }
  ],
  "total": 1,
  "page": 0,
  "limit": 0
}

Was this page helpful?

Edit this page