Scaledmail
  1. Domain
Scaledmail
  • Scaledmail API Documentaion
  • Organization
    • Get Organizations
      GET
  • Pre Warm Inboxes
    • Pre Warm Inboxes
      GET
    • Buy Pre Warm Inboxes
      POST
  • Domain
    • Get Domains
      GET
    • Get Purchased Domains
      GET
    • Search Domains
      POST
    • Buy Domains
      POST
    • Update Domain Name
      POST
    • Update Domain Redirect
      POST
  • Package
    • Get Packages
      GET
  • Order
    • Get Order Details
      GET
    • Create Order
      POST
    • Get Orders
      GET
    • Cancel Order
      DELETE
  • Mailboxes
    • Get Mailboxes by Domain ID
      GET
  • Schemas
    • Sample Schemas
      • Pet
      • Category
      • Tag
  1. Domain

Search Domains

POST
https://server.scaledmail.com/api/v1/search-domains
You can pass a maximum of 10 domains in the request body per API call.
This endpoint is rate-limited to 15 requests per minute.

Request

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

Body Params text/plain
Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://server.scaledmail.com/api/v1/search-domains?organization_id' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: text/plain' \
--data-raw '{
    "domains":["scaledmail.com","beanstalk.com"]
}'
Response Response Example
[
    {
        "domain": "utscaledmail.net",
        "status": "available",
        "price": 16.31,
        "renewPrice": 16.31
    },
    {
        "domain": "scaledmail.com",
        "status": "taken",
        "price": null,
        "renewPrice": null
    }
]
Modified at 2025-06-23 06:14:24
Previous
Get Purchased Domains
Next
Buy Domains
Built with