---
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
  - `this_node_last_purged_log_index` integer, nullable — The last-purged log 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`

## Changes

- **2026-08-10** `4911827555b2` — 1 info
  - added the optional property `this_node_last_purged_log_index` to the response with the `200` status
- **2026-04-28** `a542ced3f593` — 12 warning, 12 info
  - added the new `invalid-input` enum value to the `type` response property for the response status `400`
  - added the new `invalid-input` enum value to the `type` response property for the response status `401`
  - added the new `invalid-input` enum value to the `type` response property for the response status `403`
  - added the new `invalid-input` enum value to the `type` response property for the response status `422`
  - …20 more
- **2026-04-28** `b1d873e9a6e4` — 4 info
  - added the required property `type` to the response with the `400` status
  - added the required property `type` to the response with the `401` status
  - added the required property `type` to the response with the `403` status
  - added the required property `type` to the response with the `422` status
- **2026-04-21** `c30222181768` — 1 breaking, 5 info
  - the `detail` response's property type/format changed from `array`/`` to `string`/`` for status `422`
  - added the optional property `location` to the response with the `400` status
  - added the optional property `location` to the response with the `401` status
  - added the optional property `location` to the response with the `403` status
  - …2 more
- **2026-04-15** `a13efaccef64` — 1 info
  - endpoint added

[Full history](https://skmtc.dev/svix/apis/diom-api/changes/api/v1.cluster-admin.status/get.md)

---

[API](https://skmtc.dev/svix/apis/diom-api.md) · [All operations](https://skmtc.dev/svix/apis/diom-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/svix/diom-api/revisions/58636beb376c/schema)
