## Get URL scan's HAR `url_scanner.scans.har(strscan_id, ScanHARParams**kwargs) -> ScanHARResponse` **get** `/accounts/{account_id}/urlscanner/v2/har/{scan_id}` Get a URL scan's HAR file. See HAR spec at http://www.softwareishard.com/blog/har-12-spec/. ### Parameters - `account_id: str` Account ID. - `scan_id: str` Scan UUID. ### Returns - `class ScanHARResponse: …` - `log: Log` - `creator: LogCreator` - `comment: str` - `name: str` - `version: str` - `entries: List[LogEntry]` - `_initial_priority: str` - `_initiator_type: str` - `_priority: str` - `_request_id: str` - `_request_time: float` - `_resource_type: str` - `cache: object` - `connection: str` - `pageref: str` - `request: LogEntryRequest` - `body_size: float` - `headers: List[LogEntryRequestHeader]` - `name: str` - `value: str` - `headers_size: float` - `http_version: str` - `method: str` - `url: str` - `response: LogEntryResponse` - `_transfer_size: float` - `body_size: float` - `content: LogEntryResponseContent` - `mime_type: str` - `size: float` - `compression: Optional[int]` - `headers: List[LogEntryResponseHeader]` - `name: str` - `value: str` - `headers_size: float` - `http_version: str` - `redirect_url: str` - `status: float` - `status_text: str` - `server_ip_address: str` - `started_date_time: str` - `time: float` - `pages: List[LogPage]` - `id: str` - `page_timings: LogPagePageTimings` - `on_content_load: float` - `on_load: float` - `started_date_time: str` - `title: str` - `version: str` ### 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.har( scan_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", account_id="account_id", ) print(response.log) ``` #### Response ```json { "log": { "creator": { "comment": "https://github.com/sitespeedio/chrome-har", "name": "chrome-har", "version": "0.13.1" }, "entries": [ { "_initialPriority": "VeryHigh", "_initiator_type": "other", "_priority": "VeryHigh", "_requestId": "DDC779F0CB3746BAF283EC1A51B0F2F8", "_requestTime": 114135.331081, "_resourceType": "document", "cache": {}, "connection": "33", "pageref": "page_1", "request": { "bodySize": 0, "headers": [ { "name": "Upgrade-Insecure-Requests", "value": "1" } ], "headersSize": 197, "httpVersion": "http/1.1", "method": "GET", "url": "http://example.com/" }, "response": { "_transferSize": 1071, "bodySize": 648, "content": { "mimeType": "text/html", "size": 1256, "compression": 608 }, "headers": [ { "name": "Content-Encoding", "value": "gzip" } ], "headersSize": 423, "httpVersion": "http/1.1", "redirectURL": "redirectURL", "status": 200, "statusText": "OK" }, "serverIPAddress": "2606:2800:220:1:248:1893:25c8:1946", "startedDateTime": "2023-05-03T17:05:13.196Z", "time": 268.64 } ], "pages": [ { "id": "page_1", "pageTimings": { "onContentLoad": 305.408, "onLoad": 305.169 }, "startedDateTime": "2023-05-03T17:05:13.195Z", "title": "http://example.com/" } ], "version": "1.2" } } ```