## List origin cloud region mappings `client.cache.originCloudRegions.list(OriginCloudRegionListParamsparams, RequestOptionsoptions?): OriginCloudRegionListResponse` **get** `/zones/{zone_id}/cache/origin_cloud_regions` Returns all IP-to-cloud-region mappings configured for the zone. Each mapping tells Cloudflare which cloud vendor and region hosts the origin at that IP, enabling the edge to route via the nearest Tiered Cache upper-tier co-located with that cloud provider. Returns an empty array when no mappings exist. ### Parameters - `params: OriginCloudRegionListParams` - `zone_id: string` Identifier. ### Returns - `OriginCloudRegionListResponse` Response result for a list of origin cloud region mappings. - `id: "origin_public_cloud_region"` - `"origin_public_cloud_region"` - `editable: boolean` Whether the setting can be modified by the current user. - `value: Array` - `"origin-ip": string` The origin IP address (IPv4 or IPv6, canonicalized). - `region: string` Cloud vendor region identifier. - `vendor: "aws" | "azure" | "gcp" | "oci"` Cloud vendor hosting the origin. - `"aws"` - `"azure"` - `"gcp"` - `"oci"` - `modified_on?: string` Time this mapping was last modified. - `modified_on?: string | null` Time the mapping set was last modified. Null when no mappings exist. ### 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 originCloudRegions = await client.cache.originCloudRegions.list({ zone_id: '023e105f4ecef8ad9ca31a8372d0c353', }); console.log(originCloudRegions.id); ``` #### Response ```json { "errors": [], "messages": [], "result": { "editable": true, "id": "origin_public_cloud_region", "modified_on": null, "value": [] }, "success": true } ```