Zapmail
latest
  • latest
  • v1
  1. prewarmed domains
Zapmail
latest
  • latest
  • v1
  • Zapmail Docs
  • users
    • Retrieve User Details
      GET
  • workspaces
    • Retrieve all workspaces
      GET
    • Create new workspace
      POST
    • Update workspace
      PUT
  • billing
    • Add Billing Details
      POST
    • Update Billing Details
      PUT
  • mailbox
    • Retrieve All Mailboxes
      GET
    • Get Mailbox Details by ID
      GET
    • Assign New Mailboxes to Domains
      POST
    • Update mailbox
      PUT
    • Remove mailboxes on next renewal
      PUT
    • Get Authenticator code
      GET
    • Remove Mailboxes Instantly
      POST
    • Custom OAuth
      POST
  • payments & wallet
    • Add balance to wallet
      POST
    • Get wallet balance
      GET
    • Enable auto recharge
      POST
  • export
    • Export mailboxes
      POST
    • Add third party account details
      POST
    • Update third party account details
      PUT
  • subscriptions
    • Get all subscriptions
    • Cancel subscription
    • Upgrade existing subscription
    • Purchase subscription
  • domains
    • Retrieve All Domains
    • List Assignable Domains
    • Add DMARC record
    • Add Domain forwarding
    • Get Name servers to connect domain
    • Verify Name Server Propagation
    • Connect Domain with Zapmail
    • Enable email forwarding
    • Remove email forwarding
    • Enable catch all emails
    • Remove catch all emails
    • Check DNS records
    • Remove unused domains
    • Get available domains for registration
    • Get domains purchase payment link
    • Get domain connection requests
    • Remove domain connection requests
    • Connect Domain with Zapmail (New)
    • Add Google Client ID to Domain
    • Get availability of multiple domain names.
    • Retrieve Domain Health Score
  • dns
    • Get dns records
    • Add dns records
    • Update dns records
    • Delete dns records
  • aged domains
    • Get available domains
    • Purchase aged domains
  • prewarmed domains
    • Get prewarmed domains
      GET
    • purchase prewarmed subscription
      POST
    • Assign prewarmed mailboxes
      POST
  • placement test
    • Get subscriptions
    • Get Overall Report
    • Get placement test orders
    • Get report by cart order id
    • Get Eligible Mailboxes for Placement Tests
    • Get Available Placement Test Credits
    • Purchase Placement Test
    • Purchase plan
  • dns shield
    • Get eligible domains
    • Get available slots
    • Get subscriptions
    • Get Allocated Domains for Subscription
    • Allocate Domains to DNS Shield
    • Purchase DNS Shield
    • Upgrade DNS Shield LTD Plan
    • Cancel subscription
  • Schemas
    • domain with filter
  1. prewarmed domains

Get prewarmed domains

Testing
GET
/v2/prewarmed-domains/get-domains
This endpoint retrieves available pre-warmed domains with their associated mailboxes. Pre-warmed domains are aged domains with warmed-up mailboxes that are ready for immediate use.

Request

Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.zapmail.ai/api/v2/prewarmed-domains/get-domains?page=1&limit=10' \
--header 'x-auth-zapmail;' \
--header 'x-workspace-key;' \
--header 'x-service-provider;'

Responses

🟢200Success
application/json
Body

Example
{
    "status": 200,
    "message": "Pre-warmed up domains fetched",
    "data": {
        "domains": [
            {
                "id": "bf2317e5-b37-xxxx",
                "domain": "yourcompanynow.info",
                "isSold": false,
                "domainId": "923b513f-xxxx",
                "preWarmedUpMailboxes": [
                    {
                        "domainId": "923b513f-xxxx",
                        "domain": "yourcompanynow.info",
                        "mailbox": {
                            "username": "fd",
                            "firstName": "Frank",
                            "lastName": "D",
                            "createdAt": "2025-03-07T15:25:43.433Z",
                            "profilePicture": null
                        }
                    },
                    {
                        "domainId": "923b513f-xxxx",
                        "domain": "yourcompanynow.info",
                        "mailbox": {
                            "username": "help",
                            "firstName": "Esa",
                            "lastName": "Käkelä",
                            "createdAt": "2024-07-12T10:03:08.566Z",
                            "profilePicture": "https://zapmail.blob.core.windows.net/profile-picture/"
                        }
                    },
                    {
                        "domainId": "923b513f-xxxx",
                        "domain": "yourcompanynow.info",
                        "mailbox": {
                            "username": "ad",
                            "firstName": "alan",
                            "lastName": "dsouza",
                            "createdAt": "2025-03-07T15:22:36.738Z",
                            "profilePicture": null
                        }
                    }
                ],
                "price": 14.99
            }
        ],
        "total": 1,
        "totalDomainsUnsold": 1,
        "currentPage": 1,
        "nextPage": 2,
        "totalPages": 1
    }
}
Modified at 2025-12-24 13:01:55
Previous
Purchase aged domains
Next
purchase prewarmed subscription
Built with