Skip to main content
Monitoring & Collection/Zaku
GETZakuSince 1.0SynchronousAuth Required

ListNodes

List all nodes belonging to a specific Kubernetes cluster

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Path Parameters

Request Inputs

Path Parameters

  • clusterUuidStringRequired

    UUID of the cluster whose nodes are to be listed

Responses

200 OK

On success, this API returns the following response structure.

  • itemsList

    Collection of result items

    Example: (nested array)

    • uuidString

      Unique identifier of the node

      Example: node-xyz789

    • platformIdString

      Platform ID this node belongs to

      Example: plat-001

    • clusterUuidString

      UUID of the cluster this node belongs to

      Example: cluster-abc123

    • nameString

      Hostname of the Kubernetes node

      Example: k8s-node-01

    • nodeIpString

      Primary IP address of the node

      Example: 10.0.1.25

    • roleString

      Role of the node within the cluster (master or worker)

      Example: worker

    • statusString

      Current node status (Ready, NotReady, etc.)

      Example: Ready

    • cpuCapacityInteger

      Total CPU capacity in millicores

      Example: 32000

    • memoryCapacityString

      Total memory capacity in bytes

      Example: 137438953472

    • labelsRawString

      Raw JSON string of Kubernetes node labels

      Example: {"kubernetes.io/role":"worker"}

    • createDateString

      Timestamp when the node was registered

      Example: 2026-01-15T08:00:00Z

    • lastSyncAtString

      Timestamp of the last sync for this node

      Example: 2026-01-15T08:00:00Z

  • totalInteger

    Total number of nodes in the cluster

    Example: 12

  • limitInteger

    Page size used in this response

    Example: 20

  • offsetInteger

    Offset used in this response

    Example: 20

Endpoint

GET/api/v1/zaku/clusters/{clusterUuid}/nodes

/api/v1/zaku/clusters/{clusterUuid}/nodes

Operation ID

ListNodes

Permalink

Request Example

curl -X GET '{host}/api/v1/zaku/clusters/{clusterUuid}/nodes' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "items": [
    {}
  ],
  "total": 12,
  "limit": 20,
  "offset": 20
}

Change History

This API has no change history records yet.

View all change history