Skip to main content

URL Intel | Node.js 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(url: string, options: ReputationOptions): Promise<PangeaResponse<ReputationResult>>

Retrieve a reputation score for a URL from a provider, including an optional detailed report.

required parameters

string

The URL to be looked up

An object of optional parameters. Parameters supported:

  • provider {String} - Use reputation data from this provider: "crowdstrike". Default provider defined by the configuration.
  • verbose {Boolean} - Echo the API parameters in the response. Default: verbose=false.
  • raw {Boolean} - Include raw data from this provider. Default: raw=false.

Response Object

Promise<PangeaResponse<ReputationResult>>
const response = await urlIntel.reputation(
  "http://113.235.101.11:54384,
  {
    provider: "crowdstrike"
  }
);