Provide current and historical ownership information on domains / IPs. Identify all connections between domains, registrants, registrars, and DNS servers.
Look into all current and historical DNS / IP connections between domains and A, MX, NS, and other records. Monitor suspicious changes to DNS records.
Get detailed context on an IP address, including its user’s geolocation, time zone, connected domains, connection type, IP range, ASN, and other network ownership details.
Access our web-based solution to dig into and monitor all domain events of interest.
Get access to a web-based enterprise-grade solution to search and monitor domain registrations and ownership details for branded terms, fuzzy matches, registrants of interest, and more.
Detect and block access to and from dangerous domain names before malicious actors can weaponize them. Contact us today for more information.
Unlock integrated intelligence on Internet properties and their ownership, infrastructure, and other attributes.
Our complete set of domain, IP, and DNS intelligence available via API calls as an annual subscription with predictable pricing.
Offers complete access to WHOIS, IP, DNS, and subdomain data for product enrichment, threat hunting and more.
Multi-Level API User Administration Now Available - Manage individual API keys for team members in your organization.
Learn MorePostman is a desktop and web application that allows you to make requests to an API from a graphical user interface. We recommend using Postman with WhoisXML APIs endpoints when exploring the APIs functionality, as well as when you are troubleshooting issues with your application.
The WhoisXML API Postman collection is available at the following links:
The collection includes a preconfigured environment. You will need to set up the api_key variable to fire each request. Get your personal API KEY on the My products page. If you have questions related to the API, contact us.
The API returns DNS records matching the given search criteria. One request to the API returns DNS records of one type, which shall be specified in the recordType input parameter.
{
"apiKey": "YOUR_API_KEY",
"limit": 1000,
"includeAdditionalChecks": 1,
"recordType": "soa",
"terms": [
{
"field": "domain",
"term": "google.com"
}
]
}
This request returns all SOA records for the "google.com" domain.
You can also use wildcard search. In this case, the term input parameter looks like "google*". Such requests take longer to process, thus try avoiding too wide searches.
{
"apiKey": "YOUR_API_KEY",
"limit": 1000,
"includeAdditionalChecks": 1,
"recordType": "soa",
"terms": [
{
"field": "value",
"term": "ns1.google*"
}
]
}
This request returns all SOA records matching the search term. On our example it's: starting with "ns1.google".
In most cases, wildcard search terms are used. You can use trailing, leading, and both wildcard searches:
"ns1.google*", "*ns1.google", "*ns1.google*".
You can add search terms to exclude records from the output.
{
"apiKey": "YOUR_API_KEY",
"limit": 1000,
"includeAdditionalChecks": 1,
"recordType": "soa",
"terms": [
{
"field": "value",
"term": "ns1.google*"
},
{
"field": "value",
"term": "*googledomains.com*",
"exclude": true
}
]
}
This request returns all SOA records which start with "ns1.google" and do not include "googledomains.com".
You can use up to 4 search terms of different types within one request.
{
"apiKey": "YOUR_API_KEY",
"limit": 1000,
"includeAdditionalChecks": 1,
"recordType": "soa",
"terms": [
{
"field": "value",
"term": "ns1.google*"
},
{
"field": "domain",
"term": "1bgo9ev2in.com"
}
]
}
This request returns all SOA records which start with "ns1.google", and are related to the "1bgo9ev2in.com" domain.
You can add search terms to exclude records from the output.
{
"apiKey": "YOUR_API_KEY",
"limit": 1000,
"includeAdditionalChecks": 1,
"recordType": "txt",
"terms": [
{
"field": "domain",
"term": "twitter.com"
},
{
"field": "value",
"term": "*verification*"
},
{
"field": "value",
"term": "*domain*",
"exclude": true
}
]
}
This request returns all TXT records which contain "verification", do not include "domain", and are related to the "twitter.com" domain.
apiKey |
Required. Get your personal API key on the My products page. |
recordType |
Required. Type of DNS records among which the search is performed. Acceptable values: soa | txt | cname Default: undefined |
terms |
Required. Array of search terms. Maximum 4 items. |
terms.*.field |
Required. The field by which the search is performed among the DNS recordType records. domain – Domain name search. value – DNS record value search. Acceptable values: domain | value |
terms.*.term |
Required. The target search term. |
terms.*.exclude |
Optional. If true, then the matching DNS records will be excluded from the search results. Acceptable values: false | true Default: false |
limit |
Optional. Max count of returned records. Acceptable values: 1 - 1000 Default: 1000 |
includeAdditionalChecks |
Optional. By default, no additional checks are performed. 0 – The response is returned as normal. 1 request costs 5 DRS credits. 1 – In this mode, the API performs two additional DNS checks: wildcard check and domain activeness check. Such a query takes a bit longer to execute and 1 request costs 7 DRS credits. wildcard check – The API checks if the DNS record is part of a wildcard entry. domain activeness check – The API checks if the domain's DNS records can be retrieved. Acceptable values: 0 | 1 Default: 0 |
outputFormat |
Optional. Response output format. Acceptable values: JSON | XML Default: JSON |
After Sign Up you automatically get a free subscription plan limited to 500 DRS credits.
The maximum number of requests per second is 30. In case that the limit is breached, your subsequent requests will be rejected until the next second.
This API is also available with a dedicated load balancer and premium endpoint to enable faster querying as part of our Premium API Services and Enterprise API Packages.
We are here to listen. For a quick response, please select your request type. By submitting a request, you agree to our Terms of Service and Privacy Policy.