List Kubernetes clusters
/v1/kubernetes_clustersTo list all Kubernetes clusters, perform a GET request to /v1/kubernetes_clusters.
Authorization
bearerAuth In: header
Query Parameters
This pattern is used to return resources containing the parameter value in its name.
This parameter will filter results by labels. More details in the Labels section.
A unique identifier of a location. A request to list all the location IDs is described in the Location section.
1 <= valueThe number of results [ 1 .. 100 ] displayed on a page. By default, 20 results are shown.
1 <= value <= 10020The number of a page (>= 1) that will be returned. By default, it's 1.
1 <= value1This parameter sorts items. By default, it's id. Also, it's possible to sort by updated_at and created_at.
"id"Value in
- "id"
- "created_at"
- "updated_at"
This parameter defines if items are sorted in an ascending ASC or descending DESC order. By default, ASC is set up.
"ASC"Value in
- "ASC"
- "DESC"
Response Body
application/json
application/json
curl -X GET "https://example.com/v1/kubernetes_clusters"[ { "id": "4zbq2Rdp", "name": "k8s-cluster", "status": "pending", "location_id": 1774, "location_code": "location3651", "labels": { "environment": "production", "service": "my-web-app", "example.com/project": "my-project", "example.com/owner": "my-team" }, "created_at": "2026-05-28T07:06:41Z", "updated_at": "2026-05-28T07:06:41Z" }, { "id": "MYerYkdO", "name": "k8s-cluster", "status": "pending", "location_id": 1774, "location_code": "location3651", "labels": { "environment": "production", "service": "my-web-app", "example.com/project": "my-project", "example.com/owner": "my-team" }, "created_at": "2026-05-28T07:06:41Z", "updated_at": "2026-05-28T07:06:41Z" }]{ "message": "Bad request", "code": "BAD_REQUEST", "params": [ "page" ]}