URL Intel | Python SDK
The URL Intel service allows you to retrieve intelligence about known URLs, giving you insight into the reputation of a URL.
Initializes a new Pangea service client.
UrlIntel(token, config, logger_name)download-file
UrlIntel.download_file()Poll result
UrlIntel.poll_result(exception)Returns request's result that has been accepted by the server
response = service.poll_result(exception)
Reputation
UrlIntel.reputation(url, verbose, raw, provider)Retrieve a reputation score for a URL from a provider, including an optional detailed report.
response = url_intel.reputation(
url="http://113.235.101.11:54384",
provider="crowdstrike",
)
Reputation V2
UrlIntel.reputation_bulk(urls, verbose, raw, provider)Retrieve reputation scores for a list of URLs from a provider, including an optional detailed report.
response = url_intel.reputation_bulk(
urls=["http://113.235.101.11:54384"],
provider="crowdstrike",
)