## Download Worker `client.workers.scripts.get(stringscriptName, ScriptGetParamsparams, RequestOptionsoptions?): ScriptGetResponse` **get** `/accounts/{account_id}/workers/scripts/{script_name}` Fetch raw script content for your worker. Note this is the original script content, not JSON encoded. ### Parameters - `scriptName: string` Name of the script, used in URLs and route configuration. - `params: ScriptGetParams` - `account_id: string` Identifier. ### Returns - `ScriptGetResponse = string` ### 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 script = await client.workers.scripts.get('this-is_my_script-01', { account_id: '023e105f4ecef8ad9ca31a8372d0c353', }); console.log(script); ```