Output format | Documentation | Reverse WHOIS API | WhoisXML API

Output format

If "includeAuditDates" parameter is "false"

{
   "nextPageSearchAfter": null,
   "domainsCount": 2,
   "domainsList": [
        "airbnb.app",
        "airbnbhost.app"
    ]
}

Output parameters

nextPageSearchAfter
The value that should be used for the searchAfter input parameter. The parameter will be null if the next page doesn't exist.
domainsCount
The number of domains matching the criteria.
domainsList
The list of domains matching the criteria. This section is present for the "purchase" mode only.

If "includeAuditDates" parameter is "true"

{
   "nextPageSearchAfter": null,
   "domainsCount": 2,
   "domainsList": [
        {
            "domainName": "airbnb.app",
            "audit": {
                "createdDate": "2021-01-10T18:52:41+00:00",
                "updatedDate": "2021-01-10T18:52:41+00:00"
            }
        },
        {
            "domainName": "airbnbhost.app",
            "audit": {
                "createdDate": "2021-01-10T18:52:41+00:00",
                "updatedDate": "2021-01-10T18:52:41+00:00"
            }
        }
    ]
}

Output parameters

nextPageSearchAfter
The value that should be used for the searchAfter input parameter. The parameter will be null if the next page doesn't exist.
domainsCount
The number of domains matching the criteria.
domainsList
The list of domains matching the criteria. This section is present for the "purchase" mode only.
domain[k].domainName
Domain name matching the criteria.
domain[k].audit
Contains audit dates for the matching domain name.
domain[k].audit.createdDate
The date the domain was checked by our system initially.
domain[k].audit.updatedDate
The last the domains was checked by our system.