---
title: "Cluster Status"
method: GET
path: "/api/v1.cluster-admin.status"
tags: ["ClusterAdmin"]
---

# Cluster Status

`GET /api/v1.cluster-admin.status`

Get information about the current cluster

## Response `200`

- ClusterStatusOut
  - `cluster_id` string, nullable — The unique ID of this cluster. This value is populated on cluster initialization and will never change.
  - `cluster_name` string, nullable — The name of this cluster (as defined in the config) This value is not replicated and should only be used for debugging.
  - `this_node_id` string, required — The unique ID of the node servicing this request
  - `this_node_state` 'leader' | 'follower' | 'learner' | 'candidate' | 'shutdown' | 'unknown', required
  - `this_node_last_committed_timestamp` integer, required — The timestamp of the last transaction committed on this node
  - `this_node_last_snapshot_id` string, nullable — The last snapshot taken on this node
  - `nodes` NodeStatusOut[], required — A list of all nodes known to be in the cluster
    - `node_id` string, required — A unique ID representing this node. This will never change unless the node is erased and reset
    - `address` string, required — The advertised inter-server (cluster) address of this node.
    - `state` 'leader' | 'follower' | 'learner' | 'candidate' | 'shutdown' | 'unknown', required
    - `last_committed_log_index` integer, nullable — The index of the last log applied on this node
    - `last_committed_term` integer, nullable — The raft term of the last committed leadership

## Other responses

- `400`
- `401`
- `403`
- `422`

---

[API](https://skmtc.net/svix/apis/diom-api.md) · [All operations](https://skmtc.net/svix/apis/diom-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/svix/diom-api/versions/e98d7f3a3e10/schema)
