Skip to main content
GET
/
v1
/
scan
/
{scan_id}
Get Scan
curl --request GET \
  --url https://api.urldna.io/v1/scan/{scan_id} \
  --header 'authorization: <authorization>'
{
  "scan": {
    "id": "<string>",
    "submitted_url": "<string>",
    "device": "DESKTOP",
    "user_agent": "<string>",
    "scanned_from": "<string>",
    "origin": "USER",
    "width": 123,
    "height": 123,
    "private_scan": true,
    "status": "PENDING",
    "submitted_date": "2023-11-07T05:31:56Z",
    "domain": "<string>",
    "target_url": "<string>",
    "protocol": "<string>",
    "http_referer": "<string>",
    "nsfw": false,
    "submitter_tags": [
      "<string>"
    ],
    "error_code": "<string>"
  },
  "certificate": {
    "issuer": "<string>",
    "not_after": "<string>",
    "not_before": "<string>",
    "serial_number": "<string>",
    "subject": "<string>",
    "version": 123,
    "authority_info_access": "<string>",
    "authority_key_identifier": "<string>",
    "basic_constraints": "<string>",
    "certificate_policies": "<string>",
    "ct_precert_scts": "<string>",
    "extended_key_usage": "<string>",
    "key_usage": "<string>",
    "subject_key_identifier": "<string>"
  },
  "console_messages": [],
  "cookies": [],
  "dom": "<string>",
  "favicon": {
    "format": "<string>",
    "height": 123,
    "mimetype": "<string>",
    "phash": "<string>",
    "url": "<string>",
    "width": 123,
    "blob_uri": "<string>",
    "name": "<string>"
  },
  "http_transactions": [],
  "ip_address": {
    "ip": "<string>",
    "asn": "<string>",
    "city": "<string>",
    "country": "<string>",
    "country_code": "<string>",
    "isp": "<string>",
    "latitude": 123,
    "longitude": 123,
    "org": "<string>",
    "region": "<string>",
    "timezone_gmt": "<string>",
    "type": "<string>"
  },
  "classification": {
    "verdict": "<string>"
  },
  "page": {
    "headers": {},
    "meta_tags": {},
    "outgoing_links": [],
    "ssdeep": "<string>",
    "text": "<string>",
    "title": "<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": [],
  "technologies": []
}

Headers

authorization
string
required

Path Parameters

scan_id
string
required

Response

Successful Response

scan
Scan · object
required

Scan configuration and processing metadata.

certificate
Certificate · object

SSL/TLS certificate information for the scanned domain.

console_messages
ConsoleMessage · object[]

JavaScript console messages captured during page rendering.

cookies
Cookie · object[]

HTTP cookies set by the page and its resources.

dom
string | null

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

favicon
Favicon · object

Favicon metadata and perceptual hash for similarity matching.

http_transactions
HttpTransaction · object[]

All HTTP requests and responses observed during page load.

ip_address
IpAddress · object

IP address and geolocation details of the hosting server.

classification
Classification · object

Classification assessment indicating potential malicious activity.

page
Page · object

Extracted page content and metadata.

scan_whois
ScanWhois · object

Domain registration information from WHOIS records.

screenshot
Screenshot · object

Visual screenshot of the rendered webpage.

redirect_chains
RedirectChain · object[]

Complete redirect chain from submitted URL to final destination.

technologies
Technology · object[]

Web technologies detected on the page.