## Get screenshot `url_scanner.scans.screenshot(strscan_id, ScanScreenshotParams**kwargs) -> BinaryResponseContent` **get** `/accounts/{account_id}/urlscanner/v2/screenshots/{scan_id}.png` Get scan's screenshot by resolution (desktop/mobile/tablet). ### Parameters - `account_id: str` Account ID. - `scan_id: str` Scan UUID. - `resolution: Optional[Literal["desktop", "mobile", "tablet"]]` Target device type. - `"desktop"` - `"mobile"` - `"tablet"` ### Returns - `BinaryResponseContent` ### Example ```python import os from cloudflare import Cloudflare client = Cloudflare( api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted ) response = client.url_scanner.scans.screenshot( scan_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", account_id="account_id", ) print(response) content = response.read() print(content) ```