For the complete documentation index, see llms-docs.txt or the site index llms.txt. Full docs corpus: llms-full-docs.txt. Prefer the markdown version of this page at /docs/api/inbox/mailboxes/get-api-inbox-v1mailboxes-list.md. Product capabilities: skill.md. Docs MCP: /docs/mcp. Site MCP: /mcp.

List Mailboxes

GET
/api/inbox/v1/mailboxes/list
1import { Reloop } from "reloop-email";
2
3const reloop = new Reloop({ apiKey: "rl_123456789" });
4
5const { mailboxes, mailboxError } = await reloop.inbox.mailboxes.list();
6if (mailboxError) throw mailboxError;
1[
2 {
3 "id": "con_123456789",
4 "email": "john.doe@example.com",
5 "quota": "example_quota",
6 "status": "example_status",
7 "displayName": "example_displayName",
8 "createdAt": "2026-03-23T10:00:00.000Z"
9 }
10]

Was this page helpful?