List Mailboxes

GET
https://reloop.sh/api/inbox/v1/mailboxes/list
const response = await fetch("https://reloop.sh/api/inbox/v1/mailboxes/list", {
  method: "GET",
  headers: {
    "Authorization": "Bearer re_123456789",
  },
});

const data = await response.json();
[
  {
    "id": "con_123456789",
    "email": "john.doe@example.com",
    "quota": "example_quota",
    "status": "example_status",
    "displayName": "example_displayName",
    "createdAt": "2026-03-23T10:00:00.000Z"
  }
]

Was this page helpful?

Edit this page