Zapmail
latest
  • latest
  • v1
  1. aged 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
      GET
    • Purchase aged domains
      POST
  • prewarmed domains
    • Get prewarmed domains
    • purchase prewarmed subscription
    • Assign prewarmed mailboxes
  • 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. aged domains

Get available domains

Testing
GET
/v2/aged-domains/available-domains
Retrieve a list of available aged/high-reputation domains from the marketplace. These are premium pre-existing domains with established history, age, and quality metrics.

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/aged-domains/available-domains?page=1&limit=10' \
--header 'x-auth-zapmail;' \
--header 'x-service-provider;' \
--header 'x-workspace-key;'

Responses

🟢200Success
application/json
Body

Example
{
  "status": 200,
  "message": "Available aged domains retrieved successfully",
  "data": {
    "domains": [
      {
        "id": "aged_domain_123",
        "domainName": "techstartup.com",
        "price": 299.00,
        "qualityScore": 85,
        "domainAgeYears": 12,
        "registrationDate": "2012-03-15T00:00:00.000Z",
        "expirationDate": "2025-03-15T00:00:00.000Z",
        "tld": "com",
        "category": "technology",
        "status": "available",
        "metrics": {
          "backlinks": 1250,
          "referringDomains": 85,
          "domainAuthority": 42,
          "spamScore": 2,
          "trustFlow": 38,
          "citationFlow": 41
        },
        "features": [
          "Clean history",
          "No spam records",
          "Good backlink profile",
          "Established brand name"
        ],
        "batchNo": 45,
        "createdAt": "2024-01-15T10:30:00.000Z"
      },
      {
        "id": "aged_domain_124",
        "domainName": "healthblog.net",
        "price": 450.00,
        "qualityScore": 92,
        "domainAgeYears": 15,
        "registrationDate": "2009-07-22T00:00:00.000Z",
        "expirationDate": "2025-07-22T00:00:00.000Z",
        "tld": "net",
        "category": "health",
        "status": "available",
        "metrics": {
          "backlinks": 3400,
          "referringDomains": 210,
          "domainAuthority": 58,
          "spamScore": 1,
          "trustFlow": 52,
          "citationFlow": 55
        },
        "features": [
          "Premium quality",
          "High authority",
          "Excellent backlink profile",
          "Long history"
        ],
        "batchNo": 45,
        "createdAt": "2024-01-15T10:30:00.000Z"
      }
    ],
    "pagination": {
      "currentPage": 1,
      "totalPages": 8,
      "totalCount": 78,
      "limit": 10,
      "hasNextPage": true,
      "hasPreviousPage": false
    }
  }
}
Modified at 2025-12-24 13:01:47
Previous
Delete dns records
Next
Purchase aged domains
Built with