Kafka
Reads, creates, and deletes Kafka topics.
📄️ List Topics
List all topics on the broker with partition + replication info.
📄️ Create Topic
Create a new topic. Admin-only.
📄️ Get Topic
Get partition info and config overrides for a single topic.
📄️ Delete Topic
Delete a topic. Admin-only.
📄️ Update Topic Partitions
Increase the partition count of an existing topic. Admin-only. Kafka only permits increasing the partition count; reducing is not supported by the broker. The request fails with 422 if the new count is not strictly greater than the current count.
📄️ Update Topic Configs
Apply incremental config changes to a topic. Admin-only. `set` upserts config overrides; `delete` reverts keys to broker defaults. At least one of the two must be non-empty.