Skip to content

Name Server Monitor

The Name Server Monitor API searches the daily activity of all our monitored TLDs on any given name server. New, Deleted and Transferred domains records can be queried up to 6 days in the past.

https://api.domaintools.com/v1/name-server-monitor/?query=DNSPOD.NET\&page=1

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 domain records on the day you submit your API query. You should design your system to submit one API query per day for each name server 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.

Results are limited to 1000 records per page. To view additional pages, include the page parameter in your request.

Name Server Monitor Parameters

Parameters Description
query Required. The hostname of the Name Server you wish to query ( i.e. dynect.net ).
days_back Use this parameter in exceptional circumstances where you need to search domain changes up to six days prior to the current date. Set the value to an integer in the range of 1-6. (default 0)
page If the result set is larger than 1000 records for a given day, request additional pages with this parameter. Set the value to an integer up to a maximum of the returned page_count value. (default 1)

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.

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": {
     "limit": 1000,
     "date": "2013-11-20",
     "name_server": "DNSPOD.NET",
     "total": "12502",
     "page": 1,
     "page_count": 13,
     "alerts": [
         {
             "new_name_server": "expiredns.com",
             "old_name_server": "dnspod.net",
             "action": "Transfer Out",
             "domain": "00000ok.com"
         },
         {
             "new_name_server": "dnspod.net",
             "old_name_server": "domaincontrol.com",
             "action": "Transfer In",
             "domain": "0000500.com"
         },
         ...
     ]
}
}