Domain Intel | Python SDK
The Domain Intel service allows you to retrieve intelligence about known domain names, giving you insight into the reputation of a domain.
Initializes a new Pangea service client.
DomainIntel(token, config, logger_name)download-file
DomainIntel.download_file()Poll result
DomainIntel.poll_result(exception)Returns request's result that has been accepted by the server
response = service.poll_result(exception)
Reputation
DomainIntel.reputation(domain, provider, verbose, raw)Retrieve reputation for a domain from a provider, including an optional detailed report.
response = domain_intel.reputation(
domain="737updatesboeing.com",
provider="domaintools",
)
Reputation V2
DomainIntel.reputation_bulk(domains, provider, verbose, raw)Retrieve reputation for a domain from a provider, including an optional detailed report.
response = domain_intel.reputation_bulk(
domains=["737updatesboeing.com"],
provider="domaintools",
)
WhoIs
DomainIntel.who_is(domain, provider, verbose, raw)Retrieve who is for a domain from a provider, including an optional detailed report.
response = domain_intel.who_is(
domain="google.com",
provider="whoisxml",
)