Skip to main content
GET
/
resources
/
clusters
List clusters
curl --request GET \
  --url https://api.sevalla.com/v3/resources/clusters \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "fb5e5168-4281-4bec-94c5-0d1584e9e657",
    "name": "us-central1",
    "display_name": "Iowa, USA",
    "location": "us-central1"
  }
]

Authorizations

Authorization
string
header
required

API key authentication. Pass your API key as a Bearer token in the Authorization header.

Response

List of available clusters

id
string<uuid>
required

Unique identifier for the cluster

Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
Example:

"fb5e5168-4281-4bec-94c5-0d1584e9e657"

name
string
required

Internal name of the cluster

Example:

"us-central1"

display_name
string | null
required

Human-readable name for the cluster shown in the dashboard

Example:

"Iowa, USA"

location
string
required

Google Cloud region where the cluster is located

Example:

"us-central1"