## Retrieves a file from Binary Storage `cloudforce_one.binary_storage.get(strhash, BinaryStorageGetParams**kwargs)` **get** `/accounts/{account_id}/cloudforce-one/binary/{hash}` Retrieves a file from Binary Storage ### Parameters - `account_id: str` Account ID. - `hash: str` hash of the binary ### 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 ) client.cloudforce_one.binary_storage.get( hash="hash", account_id="account_id", ) ```