1. Mailboxes
Scaledmail
  • Scaledmail API Documentaion
  • Workspaces
    • Get Workspaces
      GET
    • Create Workspace
      POST
  • Pre Warm Inboxes
    • Pre Warm Inboxes
      GET
    • Buy Pre Warm Inboxes
      POST
  • Domain
    • Get Domains
      GET
    • Buy Domains
      POST
    • Search Domains
      POST
    • Suggest Domains
      POST
    • Update Domain Name
      POST
    • Update Domain Redirect
      POST
    • Get Purchased Domains
      GET
  • Package
    • Calculate Package
      POST
    • Get Packages
      GET
  • Order
    • Get Orders
      GET
    • Get Order Details
      GET
    • Cancel Order
      DELETE
    • Get Pending Forms
      GET
    • Submit Form
      POST
    • Create Order
      POST
    • Create Custom Order
      POST
    • Update Order Tag
      PATCH
  • Mailboxes
    • Get Mailboxes by Domain ID
      GET
  • Stats
    • Get Reporting Stats
  1. Mailboxes

Get Mailboxes by Domain ID

GET
https://server.scaledmail.com/api/v1/mailboxes/{domain_id}
đŸ“Ŧ Use this endpoint to list all mailboxes on a single domain, with each mailbox's alias, email address, and password.
To find a domain's domain_id, use the Get Domains endpoint.
→ Get Domains

🔑 Authentication#

Requires a valid API token.
GET /api/v1/mailboxes/:domain_id

🔑 Path Parameters#

domain_id (required)#

The domain's record ID, as returned by GET /domains (domains[].id).

🔑 Query Parameters#

organization_id (required)#

Your organization's ID. The domain must belong to this organization.

password (optional)#

Controls whether mailbox_password is included in the response.
Omit, or pass "true" (default) — mailbox_password is included.
Pass "false" — mailbox_password is omitted from every mailbox object.

📋 Example Request#

GET /api/v1/mailboxes/recXXXXXXXXXXXXXX?organization_id=recXXXXXXXXXXXXXX

✅ Response#

{
  "total": 1,
  "mailboxes": [
    {
      "first_name": "Jane",
      "last_name": "Doe",
      "alias": "jane",
      "domain_id": "recXXXXXXXXXXXXXX",
      "payment_id": "recXXXXXXXXXXXXXX",
      "status": "Active",
      "tag": "campaign-q3",
      "mailbox_password": "â€ĸâ€ĸâ€ĸâ€ĸâ€ĸâ€ĸâ€ĸâ€ĸ",
      "email": "jane@outreach-one.com",
      "order_type": "google",
      "order_id": "recXXXXXXXXXXXXXX"
    }
  ]
}

âš ī¸ Error Responses#

domain_id does not exist#

{ "message": "Unable to get mailboxes or domain ID does not exist" }

â„šī¸ Notes#

profile_picture is included per-mailbox when one was set on the order — otherwise the field is omitted.
If the domain has no mailboxes yet, mailboxes is returned as an empty array.
If domain_id exists but belongs to a different organization than organization_id, this does not error — it responds 200 with total: 0 and mailboxes: null (or mailboxes: [] if ?password=false is passed).

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Query Params

Responses

đŸŸĸ200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://server.scaledmail.com/api/v1/mailboxes/?organization_id=' \
--header 'Authorization: Bearer <token>'
Response Response Example
{}
Modified at 2026-08-24 19:38:37
Previous
Update Order Tag
Next
Get Reporting Stats
Built with