List All Kafka Topics
Fetch All Topics
This endpoint lets you fetch a list of all Kafka topics within a specified Kafka cluster.
Endpoint
GET /clusters/{clusterId}/topics
The GET /clusters/{clusterId}/topics
endpoint retrieves a collection of all Kafka topics within the specified Kafka cluster identified by clusterId. Each topic includes detailed metadata such as creation and modification dates, ownership details, and current operational state. Topic properties like name, replicationFactor, numberOfPartitions, and logRetention settings are also provided.
Use this endpoint to fetch and monitor all Kafka topics within your environment, enabling efficient management and monitoring of data streams and event processing.
Parameters
Path Parameters | Required | Type | Description |
---|---|---|---|
| Yes | string | The UUID of the Kafka cluster from which to retrieve topics.
Example: |
Response
Last updated