Skip to main content
GET
/
mailboxes
List mailboxes
curl --request GET \
  --url https://app.sendmux.ai/api/v1/mailboxes \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "data": [
    {
      "id": "mbx_clxxxxxxxxxxxxxxxxxxxxxxxxx",
      "email": "agent@acme.com",
      "display_name": "<string>",
      "quota_bytes": 123,
      "send_scope": {
        "type": "all",
        "provider_public_ids": [
          "<string>"
        ],
        "group_public_ids": [
          "<string>"
        ]
      },
      "status": "active",
      "created_at": "<string>"
    }
  ],
  "pagination": {
    "has_more": true,
    "next_cursor": "<string>"
  },
  "meta": {
    "request_id": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.sendmux.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Sendmux API key. Obtain from the dashboard under API Keys. Format: smx_root_...

Query Parameters

cursor
string

Pagination cursor — the next_cursor from the previous response.

limit
integer

Max results (default 50, max 100)

Required range: 1 <= x <= 100
include_deleted
enum<string>

Set to true to include soft-deleted mailboxes (status deleted) in the response. Default false. Soft-deleted mailboxes are retained for tenant-isolation references in delivery logs and API keys.

Available options:
true

Response

Mailbox list

ok
enum<boolean>
required
Available options:
true
data
object[]
required
pagination
object
required
meta
object
required