Get Mailbox
Path Parameters
idstringRequired
Mailbox ID
const response = await fetch("https://reloop.sh/api/inbox/v1/mailboxes/{id}", {
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",
"domainId": "example_domainId",
"createdAt": "2026-03-23T10:00:00.000Z",
"updatedAt": "2026-03-23T10:00:00.000Z"
}Was this page helpful?