Skip to main content
POST
/
clients
/
me
/
integrations
/
hypernative
/
url
/
scan
Scan a URL
curl --request POST \
  --url https://api.portalhq.io/api/v3/clients/me/integrations/hypernative/url/scan \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>"
}
'
{
  "data": {
    "rawResponse": {
      "isMalicious": true,
      "deepScanTriggered": true
    }
  }
}

Authorizations

Authorization
string
header
required

Client API Key or Client Session Token (CST). Pass as a Bearer token in the Authorization header.

Body

application/json
url
string
required

The URL to scan.

Response

Scan completed successfully

data
object