## Get a Page Shield script `client.pageShield.scripts.get(stringscriptId, ScriptGetParamsparams, RequestOptionsoptions?): ScriptGetResponse | null` **get** `/zones/{zone_id}/page_shield/scripts/{script_id}` Fetches a script detected by Page Shield by script ID. ### Parameters - `scriptId: string` Identifier - `params: ScriptGetParams` - `zone_id: string` Identifier ### Returns - `ScriptGetResponse` - `id: string` Identifier - `added_at: string` - `first_seen_at: string` - `host: string` - `last_seen_at: string` - `url: string` - `url_contains_cdn_cgi_path: boolean` - `cryptomining_score?: number | null` The cryptomining score of the JavaScript content. - `dataflow_score?: number | null` The dataflow score of the JavaScript content. This field has been deprecated in favour of js_integrity_score. - `domain_reported_malicious?: boolean` - `fetched_at?: string | null` The timestamp of when the script was last fetched. - `first_page_url?: string` - `hash?: string | null` The computed hash of the analyzed script. - `js_integrity_score?: number | null` The integrity score of the JavaScript content. - `magecart_score?: number | null` The magecart score of the JavaScript content. - `malicious_domain_categories?: Array` - `malicious_url_categories?: Array` - `malware_score?: number | null` The malware score of the JavaScript content. - `obfuscation_score?: number | null` The obfuscation score of the JavaScript content. This field has been deprecated in favour of js_integrity_score. - `page_urls?: Array` - `url_reported_malicious?: boolean` - `versions?: Array | null` - `cryptomining_score?: number | null` The cryptomining score of the JavaScript content. - `dataflow_score?: number | null` The dataflow score of the JavaScript content. This field has been deprecated in favour of js_integrity_score. - `fetched_at?: string | null` The timestamp of when the script was last fetched. - `hash?: string | null` The computed hash of the analyzed script. - `js_integrity_score?: number | null` The integrity score of the JavaScript content. - `magecart_score?: number | null` The magecart score of the JavaScript content. - `malware_score?: number | null` The malware score of the JavaScript content. - `obfuscation_score?: number | null` The obfuscation score of the JavaScript content. This field has been deprecated in favour of js_integrity_score. ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiEmail: process.env['CLOUDFLARE_EMAIL'], // This is the default and can be omitted apiKey: process.env['CLOUDFLARE_API_KEY'], // This is the default and can be omitted }); const script = await client.pageShield.scripts.get('023e105f4ecef8ad9ca31a8372d0c353', { zone_id: '023e105f4ecef8ad9ca31a8372d0c353', }); console.log(script.id); ``` #### Response ```json { "result": { "id": "023e105f4ecef8ad9ca31a8372d0c353", "added_at": "2021-08-18T10:51:10.09615Z", "first_seen_at": "2021-08-18T10:51:08Z", "host": "blog.cloudflare.com", "last_seen_at": "2021-09-02T09:57:54Z", "url": "https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/js/bootstrap.min.js", "url_contains_cdn_cgi_path": false, "cryptomining_score": 1, "dataflow_score": 1, "domain_reported_malicious": false, "fetched_at": "fetched_at", "first_page_url": "blog.cloudflare.com/page", "hash": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", "js_integrity_score": 1, "magecart_score": 1, "malicious_domain_categories": [ "Malware" ], "malicious_url_categories": [ "Malware" ], "malware_score": 1, "obfuscation_score": 1, "page_urls": [ "blog.cloudflare.com/page1", "blog.cloudflare.com/page2" ], "url_reported_malicious": false, "versions": [ { "cryptomining_score": 20, "dataflow_score": 1, "fetched_at": "2021-08-18T10:51:08Z", "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b423", "js_integrity_score": 2, "magecart_score": 10, "malware_score": 5, "obfuscation_score": 1 } ] }, "success": true, "errors": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "messages": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ] } ```