List partitions
Get a list of partition replicas hosted by the current broker. Returns only those partitions whose replicas are present on the queried broker, not all partitions in the cluster.
GET
/v1/partitions
curl \
--request GET 'http://localhost:9644/v1/partitions'
Response examples (200)
[
{
"core": 42,
"leader": 42,
"materialized": true,
"ns": "string",
"partition_id": 42,
"topic": "string"
}
]