Submit a URL to be scanned and control options for how the scan should be performed.
Security
apikeyAuth(Required scopes: readwrite)
Intended visibility of the final scan result
Default:"public"
Enum:"public""unlisted""private"
Example:"public"
Country to scan from. ISO 3166-1 alpha-2 format. If not supplied, an appropriate country will automatically be chosen.
Example:"de"
If set to any value, this will disable reclassification of URLs with potential PII in them. Use with care!
POST
curl -i -X POST \
https://urlscan.io/api/v1/scan \
-H 'Content-Type: application/json' \
-H 'api-key: YOUR_API_KEY_HERE' \
-d '{
"url": "https://urlscan.io",
"visibility": "public",
"country": "de",
"tags": [
"iloveurlscan",
"testing"
]
}'Response
{ "uuid": "68e26c59-2eae-437b-aeb1-cf750fafe7d7", "visibility": "public", "url": "https://urlscan.io/", "country": "de" }