URL Intel | Java SDK
The URL Intel service allows you to retrieve intelligence about known URLs, giving you insight into the reputation of a URL.
Reputation check
reputation(java.lang.String)Retrieve a reputation score for a URL from a provider, including an optional detailed report.
URLReputationResponse response = client.reputation(
"http://113.235.101.11:54384");
Reputation check - provider
reputation(java.lang.String, java.lang.String)Retrieve a reputation score for a URL from a provider, including an optional detailed report.
URLReputationResponse response = client.reputation(
"http://113.235.101.11:54384",
"crowdstrike");
Reputation check - verbose, raw
reputation(java.lang.String, boolean,boolean)Retrieve a reputation score for a URL from a provider, including an optional detailed report.
URLReputationResponse response = client.reputation(
"http://113.235.101.11:54384",
true,
true);
Reputation check - provider, verbose, raw
reputation(java.lang.String, java.lang.String,boolean,boolean)Retrieve a reputation score for a URL from a provider, including an optional detailed report.
URLReputationResponse response = client.reputation(
"http://113.235.101.11:54384",
"crowdstrike",
true,
true);