1. Domain
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. Domain

Get Domains

GET
https://server.scaledmail.com/api/v1/domains
🌐 Use this endpoint to list all active domains in your organization, along with their mailbox setup, tag, status, and provider.

🔑 Authentication#

Requires a valid API token.
GET /api/v1/domains

🔑 Query Parameters#

organization_id (required)#

Your organization's ID. Only domains belonging to this organization are returned.

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 domain object.

📋 Example Request#

GET /api/v1/domains?organization_id=recXXXXXXXXXXXXXX

✅ Response#

{
  "total": 1,
  "domains": [
    {
      "id": "recXXXXXXXXXXXXXX",
      "domain": "outreach-one.com",
      "tag": "campaign-q3",
      "redirect": "https://example.com",
      "mailbox_password": "â€ĸâ€ĸâ€ĸâ€ĸâ€ĸâ€ĸâ€ĸâ€ĸ",
      "order_type": "google",
      "order_id": "recXXXXXXXXXXXXXX",
      "payment_id": "recXXXXXXXXXXXXXX",
      "domain_provider": "Scaledmail",
      "user_id": "recXXXXXXXXXXXXXX",
      "total_mailboxes": 2,
      "mailbox": [
        {
          "first_name": "Jane",
          "last_name": "Doe",
          "alias": "jane"
        }
      ],
      "status": "Active"
    }
  ]
}

â„šī¸ Notes#

Only domains with an active (non-cancelled, non-pending-cancellation) order are returned.
Use mailbox[].alias with the domain name to build each mailbox's email address ({alias}@{domain}) — or use the Get Mailboxes endpoint, which returns this pre-built as email.

Request

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

Responses

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

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://server.scaledmail.com/api/v1/domains?organization_id=undefined' \
--header 'Authorization: Bearer <token>'
Response Response Example
{}
Modified at 2026-08-24 19:37:38
Previous
Buy Pre Warm Inboxes
Next
Buy Domains
Built with