## Get Cache Reserve setting `cache.cache_reserve.get(CacheReserveGetParams**kwargs) -> CacheReserveGetResponse` **get** `/zones/{zone_id}/cache/cache_reserve` Increase cache lifetimes by automatically storing all cacheable files into Cloudflare's persistent object storage buckets. Requires Cache Reserve subscription. Note: using Tiered Cache with Cache Reserve is highly recommended to reduce Reserve operations costs. See the [developer docs](https://developers.cloudflare.com/cache/about/cache-reserve) for more information. ### Parameters - `zone_id: str` Identifier. ### Returns - `class CacheReserveGetResponse: …` - `id: CacheReserve` The identifier of the caching setting. - `"cache_reserve"` - `editable: bool` Whether the setting is editable. - `value: Literal["on", "off"]` Value of the Cache Reserve zone setting. - `"on"` - `"off"` - `modified_on: Optional[datetime]` Last time this setting was modified. ### 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 ) cache_reserve = client.cache.cache_reserve.get( zone_id="023e105f4ecef8ad9ca31a8372d0c353", ) print(cache_reserve.id) ``` #### Response ```json { "errors": [], "messages": [], "result": { "editable": true, "id": "cache_reserve", "value": "off" }, "success": true } ```