Skip to main content
GET
/
v1
/
scan
/
{scan_id}
Retrieve Scan Results
curl --request GET \
  --url https://api.urldna.io/v1/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>"
  },
  "classification": {
    "verdict": "SAFE"
  },
  "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>",
    "http_referer": "<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>"
    ],
    "error_code": "<string>"
  },
  "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
  },
  "redirect_chains": {
    "redirect_url": "<string>",
    "status": "<string>",
    "elapsed_time": 123
  },
  "technologies": [
    {
      "category": "<string>",
      "name": "<string>",
      "version": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Path Parameters

scan_id
string
required

Unique scan identifier returned from scan submission.

Response

Scan results retrieved successfully.

Comprehensive scan results containing security analysis, network information, content extraction, and metadata.

certificate
object

SSL/TLS certificate information for the scanned domain.

console_messages
object[]

JavaScript console messages captured during page rendering.

cookies
object[]

HTTP cookies set by the page and its resources.

dom
string

Complete HTML Document Object Model (DOM) of the rendered page.

favicon
object

Favicon metadata and perceptual hash for similarity matching.

http_transactions
object[]

All HTTP requests and responses observed during page load.

ip_address
object

IP address and geolocation details of the hosting server.

classification
object

Classification assessment indicating potential malicious activity.

page
object

Extracted page content and metadata.

scan
object

Scan configuration and processing metadata.

scan_whois
object

Domain registration information from WHOIS records.

screenshot
object

Visual screenshot of the rendered webpage.

redirect_chains
object

Complete redirect chain from submitted URL to final destination.

technologies
object[]

Web technologies detected on the page.