Docs
Sign in
Projects

List provisioning regions

Last updated August 22, 2026

get/v1/regions

Responses

200

Regions available for Inth project provisioning.

Content type application/json

PropertyTypeRequiredDescription
successbooleanRequired
dataobject[]Required
data[].idstringRequired
data[].labelstringRequired
View JSON schema
{
  "type": "object",
  "required": [
    "success",
    "data"
  ],
  "properties": {
    "success": {
      "type": "boolean",
      "const": true
    },
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "id",
          "label"
        ],
        "properties": {
          "id": {
            "type": "string"
          },
          "label": {
            "type": "string"
          }
        }
      }
    }
  }
}