List supported cloud vendors and regions
GET/zones/{zone_id}/cache/origin_cloud_regions/supported_regions
Returns the cloud vendors and regions that are valid values for origin cloud region mappings. Each region includes the Tiered Cache upper-tier colocation codes that will be used for cache routing when a mapping targeting that region is active. Requires the zone to have Tiered Cache enabled.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
List supported cloud vendors and regions
curl https://api.cloudflare.com/client/v4/zones/$ZONE_ID/cache/origin_cloud_regions/supported_regions \
-H "Authorization: Bearer $CLOUDFLARE_API_TOKEN"{
"errors": [],
"messages": [],
"result": {
"obtained_codes": true,
"vendors": {
"aws": [
{
"name": "us-east-1",
"upper_tier_colos": [
"IAD",
"EWR"
]
},
{
"name": "us-west-2",
"upper_tier_colos": [
"SEA"
]
}
],
"gcp": [
{
"name": "us-central1",
"upper_tier_colos": [
"ORD"
]
}
]
}
},
"success": true
}Returns Examples
{
"errors": [],
"messages": [],
"result": {
"obtained_codes": true,
"vendors": {
"aws": [
{
"name": "us-east-1",
"upper_tier_colos": [
"IAD",
"EWR"
]
},
{
"name": "us-west-2",
"upper_tier_colos": [
"SEA"
]
}
],
"gcp": [
{
"name": "us-central1",
"upper_tier_colos": [
"ORD"
]
}
]
}
},
"success": true
}