Skip to content

Work with domain tags in the Iris Investigate API

Search for domains that have already been tagged within the Iris Investigate UI. All Tags created within your instance of the Iris Investigate UI are accessible via the API.

Use tagged_with_any and tagged_with_all to perform base searches on tags:

Use CaseSample ParameterExpected Result
Retrieve Domains matching one of the specified Tags?tagged_with_any=watch,monitorAll Domains which have been tagged as ‘watch’ OR ‘monitor’
Retrieve Domains matching a list of Tags?tagged_with_all=block,dangerous,evilAll Domains which have been tagged with all 3 tags – ‘block’ and ‘dangerous’ and ‘evil’

Search for domains tagged with either “watch” or “monitor”:

https://api.domaintools.com/v1/iris-investigate/?tagged_with_any=watch,monitor

Search for domains tagged with all three tags:

https://api.domaintools.com/v1/iris-investigate/?tagged_with_all=block,dangerous,evil

Limit base results by filtering for tagged domains:

Use CaseSample ParameterExpected Result
Filter result sets by only displaying Domains matching one of the specified ‘Tags’?nameserver_domain=markmonitor.zone&tagged_with_any=watch,monitorOnly list Domains which are tagged as ‘watch’ OR ‘monitor’
Filter result sets by only displaying Domains matching a List of ‘Tags’?nameserver_domain=markmonitor.zone&tagged_with_all=block,dangerous,evilOnly list Domains which are tagged with all 3 tags – ‘watch’ and ‘dangerous’ and ‘evil’
Filter result sets by excluding domains matching one of the specified ‘Tags’?nameserver_domain=markmonitor.zone&not_tagged_with_any=watch,monitorOnly list Domains which are not tagged with ‘watch’ or ‘monitor’
Filter result sets by excluding domains matching a List of ‘Tags’?nameserver_domain=markmonitor.zone&not_tagged_with_all=zerolisted,safe,trustedOnly list Domains which are not tagged as ‘zerolisted’ and ‘safe’ and ‘trusted’

Filter nameserver search to only show domains tagged as “watch” or “monitor”:

https://api.domaintools.com/v1/iris-investigate/?nameserver_domain=markmonitor.zone&tagged_with_any=watch,monitor

Filter nameserver search to exclude domains tagged as safe:

https://api.domaintools.com/v1/iris-investigate/?nameserver_domain=markmonitor.zone&not_tagged_with_any=safe,trusted
ParameterTypeDescription
tagged_with_anyBase search or filterDomains tagged with any of the specified tags (OR logic)
tagged_with_allBase search or filterDomains tagged with all of the specified tags (AND logic)
not_tagged_with_anyFilter onlyDomains not tagged with any of the specified tags
not_tagged_with_allFilter onlyDomains not tagged with all of the specified tags