## Get URL scan's DOM `client.urlScanner.scans.dom(stringscanId, ScanDOMParamsparams, RequestOptionsoptions?): ScanDOMResponse` **get** `/accounts/{account_id}/urlscanner/v2/dom/{scan_id}` Returns a plain text response, with the scan's DOM content as rendered by Chrome. ### Parameters - `scanId: string` Scan UUID. - `params: ScanDOMParams` - `account_id: string` Account ID. ### Returns - `ScanDOMResponse = string` HTML of webpage. ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); const response = await client.urlScanner.scans.dom('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', { account_id: 'account_id', }); console.log(response); ```