Skip to main content

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.

required parameters

java.lang.String

The URL to be looked up

Response Object

URLReputationResponse
 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.

required parameters

java.lang.String

The URL to be looked up

java.lang.String

Use reputation data from this provider

Response Object

URLReputationResponse
 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.

required parameters

java.lang.String

The URL to be looked up

boolean

Echo the API parameters in the response

boolean

Include raw data from this provider

Response Object

URLReputationResponse
 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.

required parameters

java.lang.String

The URL to be looked up

java.lang.String

Use reputation data from this provider

boolean

Echo the API parameters in the response

boolean

Include raw data from this provider

Response Object

URLReputationResponse
 URLReputationResponse response = client.reputation(
     "http://113.235.101.11:54384",
     "crowdstrike",
     true,
     true);