## Retrieves a file from Binary Storage `client.cloudforceOne.binaryStorage.get(stringhash, BinaryStorageGetParamsparams, RequestOptionsoptions?): void` **get** `/accounts/{account_id}/cloudforce-one/binary/{hash}` Retrieves a file from Binary Storage ### Parameters - `hash: string` hash of the binary - `params: BinaryStorageGetParams` - `account_id: string` Account ID. ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); await client.cloudforceOne.binaryStorage.get('hash', { account_id: 'account_id' }); ```