GET
/
scan
/
{scan_id}
curl --request GET \
  --url https://api.urldna.io/scan/{scan_id} \
  --header 'Authorization: <api-key>'
{
  "certificate": {
    "authority_info_access": "<string>",
    "authority_key_identifier": "<string>",
    "basic_constraints": "<string>",
    "certificate_policies": "<string>",
    "ct_precert_scts": "<string>",
    "extended_key_usage": "<string>",
    "issuer": "<string>",
    "key_usage": "<string>",
    "not_after": "<string>",
    "not_before": "<string>",
    "serial_number": "<string>",
    "subject": "<string>",
    "subject_key_identifier": "<string>",
    "version": 123
  },
  "console_messages": [
    {
      "text": "<string>",
      "type": "<string>"
    }
  ],
  "cookies": [
    {
      "domain": "<string>",
      "expiry": "<string>",
      "http_only": true,
      "name": "<string>",
      "path": "<string>",
      "secure": true,
      "value": "<string>"
    }
  ],
  "dom": "<string>",
  "favicon": {
    "blob_uri": "<string>",
    "format": "<string>",
    "height": 123,
    "mimetype": "<string>",
    "name": "<string>",
    "phash": "<string>",
    "url": "<string>",
    "width": 123
  },
  "http_transactions": [
    {
      "content_type": "<string>",
      "ip": "<string>",
      "method": "<string>",
      "mimetypes": "<string>",
      "size": 123,
      "status_code": 123,
      "url": "<string>"
    }
  ],
  "ip_address": {
    "asn": "<string>",
    "city": "<string>",
    "country": "<string>",
    "country_code": "<string>",
    "ip": "<string>",
    "isp": "<string>",
    "latitude": 123,
    "longitude": 123,
    "org": "<string>",
    "region": "<string>",
    "timezone_gmt": "<string>",
    "type": "<string>"
  },
  "malicious": {
    "malicious": true,
    "threat": "SCAM"
  },
  "page": {
    "headers": {},
    "meta_tags": {},
    "outgoing_links": [
      "<string>"
    ],
    "ssdeep": "<string>",
    "text": "<string>",
    "title": "<string>"
  },
  "scan": {
    "id": "<string>",
    "submitted_url": "<string>",
    "domain": "<string>",
    "target_url": "<string>",
    "protocol": "<string>",
    "device": "DESKTOP",
    "user_agent": "<string>",
    "nsfw": true,
    "scanned_from": "DEFAULT",
    "origin": "API",
    "width": 123,
    "height": 123,
    "private_scan": true,
    "status": "PENDING",
    "submitted_date": "2023-11-07T05:31:56Z",
    "submitter_tags": [
      "<string>"
    ]
  },
  "scan_feedback": {
    "malicious_count": 123,
    "safe_count": 123
  },
  "scan_whois": {
    "address": "<string>",
    "country": "<string>",
    "creation_date": "<string>",
    "domain_name": "<string>",
    "expiration_date": "<string>",
    "name": "<string>",
    "org": "<string>",
    "registrant_postal_code": "<string>",
    "registrar": "<string>",
    "state": "<string>",
    "updated_date": "<string>"
  },
  "screenshot": {
    "blob_uri": "<string>",
    "format": "<string>",
    "height": 123,
    "mimetype": "<string>",
    "phash": "<string>",
    "width": 123
  },
  "technologies": [
    {
      "category": "<string>",
      "name": "<string>",
      "version": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Path Parameters

scan_id
string
required

Unique identifier of the scan.

Response

200
application/json
Scan result retrieved successfully.

Represents the results of a scan performed on a URL, domain, or IP, including security, network, and content analysis.

certificate
object

SSL/TLS certificate details of the scanned domain.

console_messages
object[]

JavaScript console messages captured during page load.

Represents a message logged in the browser's developer console during the scan.

cookies
object[]

List of cookies set by the scanned page.

Represents an HTTP cookie set by the scanned webpage.

dom
string

HTML content of the scanned webpage's Document Object Model (DOM).

favicon
object

Favicon metadata and hash for similarity detection.

http_transactions
object[]

List of HTTP requests and responses observed during the scan.

Represents an HTTP request-response transaction captured during the scan.

ip_address
object

IP address and geolocation details of the scanned domain.

malicious
object

Indicates whether the scan detected malicious activity.

page
object

Metadata and extracted content from the scanned webpage.

scan
object

Details about the scan, such as timestamps and scan parameters.

scan_feedback
object

User feedback on the scan results, indicating if the page is safe or malicious.

scan_whois
object

WHOIS registration information for the scanned domain.

screenshot
object

Screenshot of the scanned webpage for visual analysis.

technologies
object[]

List of detected technologies used by the scanned webpage.

Represents detected technologies used by the scanned webpage.