ByCloud Docs
GuidesCLIAPISDK
get/v1/regions

List regions

List all available regions. This endpoint is public and does not require authentication. Returns all regions with their availability status.

Responses

200

List of regions

Content-Type: application/json

regions

arrayrequired

List of available regions

default

stringrequired

The default region code

429

Rate limit exceeded

Content-Type: application/json

error

objectrequired
500

Internal server error

Content-Type: application/json

error

objectrequired
curl -X GET "https://api.spo1.mycloud.com/v1/regions" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json"

Response

List of regions

{
"regions": [
{
"code": "spo1",
"name": "São Paulo 1",
"location": "São Paulo, Brazil",
"country_code": "BR",
"available": true,
"coming_soon": false
}
],
"default": "spo1"
}