Skip to main content
Unlisted page
This page is unlisted. Search engines will not index it, and only users having a direct link can access it.

List Object Storage Regions

GET https://infrahub-api.nexgencloud.com/v1/object-storage/regions

Retrieve a list of supported Object Storage regions. These regions represent geographic data center locations where Object Storage resources can be provisioned and managed.

For a full list of all regions—including those that do not support Object Storage—use the List Regions API.


Parameters


No parameters.


Attributes


regions array of objects

An array of Object Storage-specific regions objects.

Show attributes
name string

The name of the Object Storage region. Example: CANADA-1

Example request
curl -X GET "https://infrahub-api.nexgencloud.com/v1/object-storage/regions" \
-H "accept: application/json" \
-H "api_key: YOUR API KEY"
  • Include an api_key in the header to authenticate your request. This endpoint does not require authentication, but the key may be included. Learn more
Response
{
"regions": [
{
"name": "CANADA-1"
},
{
"name": "NORWAY-1"
}
]
}

Returns


Returns a list of supported Object Storage regions, each identified by a unique name.


Back to top