DomainTools API Guide: Registrant Alert
The DomainTools API is organized into distinct products with queries that follow a REST-ful URL structure wherever possible. Each product offers free, un-authenticated access for the sample URLs listed with each product. If you haven't already, you may want to review the getting started document to learn about authentication and response formats.
The Registrant Alert API searches the ownership (Whois) records of domain names for specific search terms. The product is ideal for monitoring specific domain owners (such as "DomainTools LLC") to be alerted whenever their information appears in a newly-registred domain name. The API will also alert you to domains that no longer match a specific term.
http://api.domaintools.com/v1/registrant-alert/?query=domaintools
NOTE: We are unable to provide a functioning test URL for this product because the data changes each day. See below for a sample response.
By default, the active data set is new or updated Whois records on the day you submit your API query. You should design your system to submit one API query per day for each registrant you want to monitor. If you experience a temporary failure in your processing routines, you can catch up on missing alerts up to six days back by providing the days_back parameter in your request.
One or more terms separated by the pipe character ( | ).
For best results, schedule your daily update to occur no sooner than 3am Pacific time. This ensures the data has been fully processed and is ready for your use. If the data is not ready when you submit your query, you'll receive an error message and your account will not be charged.
Because each query consumes resources regardless of whether a match is found, your API account will be charged for each request you submit to the API even if no domain names match your query.
Sample Response
response: {
query: "DomainTools",
limit: 500,
total: 2,
date: "2011-03-02",
alerts: [
{
domain: "reversewhois.com",
match_type: "added"
current_owner: "DomainTools LLC"
created: "2011-02-01"
modified: "2011-03-02"
last_owner: ""
},
{
domain: "external-systems.com",
match_type: "removed"
current_owner: "Domain Administration"
created: "1999-10-17"
modified: "2011-03-02"
last_owner: "DomainTools LLC"
}
]
}
You must provide your API credentials to use this API.