Skip to main content
POST
/
v1
/
fast-check
Post fast check
curl --request POST \
  --url https://api.urldna.io/v1/fast-check \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --data '
{
  "url": "<string>"
}
'
{
  "malicious_score": 123,
  "url": "<string>",
  "status": "SAFE",
  "scan_id": "<string>"
}

Headers

authorization
string
required

Body

application/json
url
string<uri>
required
Required string length: 10 - 500

Response

Successful Response

malicious_score
number
required

Numerical score (0-1) indicating likelihood of malicious intent. Higher values indicate greater risk.

url
string
required

The URL that was checked.

status
enum<string>
required

URL classification: SAFE (verified benign), MALICIOUS (threat detected), UNRATED (insufficient data).

Available options:
SAFE,
MALICIOUS,
UNRATED
scan_id
string

Scan ID associated with the checked URL. This attribute is omitted if the URL is not present in the system.