Strimzi website screenshot

Strimzi

Strimzi is a CNCF project providing a Kubernetes-native operator for running Apache Kafka on Kubernetes and OpenShift. It simplifies the deployment, management, scaling, and configuration of Kafka clusters using Kubernetes Custom Resource Definitions (CRDs). Strimzi manages the full Kafka ecosystem including brokers, ZooKeeper/KRaft, Kafka Connect, Kafka MirrorMaker 2, Kafka Bridge, and Schema Registry. The operator pattern lets teams declare desired Kafka topology via YAML manifests managed by Kubernetes.

2 APIs 0 Features
KafkaKubernetesMessagingOperatorStreaming

APIs

Strimzi Operator API

The Strimzi Operator API is expressed through Kubernetes Custom Resource Definitions (CRDs). Operators are controlled by creating and modifying Kafka, KafkaTopic, KafkaUser, Kaf...

Strimzi Kafka Bridge REST API

The Strimzi Kafka Bridge provides an HTTP/REST interface to Apache Kafka, allowing HTTP clients to produce and consume messages, manage consumer groups, and query topic metadata...

Collections

Pricing Plans

Strimzi Plans Pricing

3 plans

PLANS

Rate Limits

Strimzi Rate Limits

5 limits

RATE LIMITS

FinOps

Semantic Vocabularies

Strimzi Context

0 classes · 4 properties

JSON-LD

API Governance Rules

Strimzi API Rules

8 rules · 1 errors 4 warnings 3 info

SPECTRAL

JSON Structure

Strimzi Kafka Structure

0 properties

JSON STRUCTURE

Example Payloads

Kubernetes CRDs

kafka crd

CRD

kafkatopic crd

CRD

kafkauser crd

CRD

Resources

🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
👥
GitHub
GitHub
📰
Blog
Blog
🔗
Helm Chart
Helm Chart
🔗
Slack
Slack
📄
ChangeLog
ChangeLog
🔗
CNCF
CNCF
🔗
OpenAPI
OpenAPI
🔗
JSONSchema
JSONSchema
🔗
JSONLDContext
JSONLDContext

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Strimzi Kafka Bridge REST API
  version: 0.28.0
items:
- info:
    name: Producer
    type: folder
  items:
  - info:
      name: Send Messages to Topic
      type: http
    http:
      method: POST
      url: http://localhost:8080/topics/:topicname
      params:
      - name: topicname
        value: ''
        type: path
        description: The name of the Kafka topic to send messages to
      body:
        type: json
        data: '{}'
    docs: Sends one or more messages to a Kafka topic. Messages can include a key, value, partition, headers, and timestamp.
      Supports JSON-encoded Kafka records.
  - info:
      name: Send Messages to Partition
      type: http
    http:
      method: POST
      url: http://localhost:8080/topics/:topicname/partitions/:partitionid
      params:
      - name: topicname
        value: ''
        type: path
        description: The name of the Kafka topic
      - name: partitionid
        value: ''
        type: path
        description: The partition ID to send messages to
      body:
        type: json
        data: '{}'
    docs: Sends one or more messages to a specific partition of a Kafka topic.
- info:
    name: Consumer
    type: folder
  items:
  - info:
      name: Create Consumer
      type: http
    http:
      method: POST
      url: http://localhost:8080/consumers/:groupid
      params:
      - name: groupid
        value: ''
        type: path
        description: The consumer group ID
      body:
        type: json
        data: '{}'
    docs: Creates a new Kafka consumer instance in the specified consumer group. Returns a base URI for subsequent consumer
      operations. Consumer instances are not thread-safe and must be used by a single client.
  - info:
      name: Delete Consumer
      type: http
    http:
      method: DELETE
      url: http://localhost:8080/consumers/:groupid/instances/:name
      params:
      - name: groupid
        value: ''
        type: path
        description: The consumer group ID
      - name: name
        value: ''
        type: path
        description: The unique name for the consumer instance
    docs: Destroys a consumer instance and removes it from the consumer group. Any subscriptions and assignments are also
      removed.
  - info:
      name: List Topic Subscriptions
      type: http
    http:
      method: GET
      url: http://localhost:8080/consumers/:groupid/instances/:name/subscription
      params:
      - name: groupid
        value: ''
        type: path
        description: The consumer group ID
      - name: name
        value: ''
        type: path
        description: The unique name for the consumer instance
    docs: Returns the list of topics to which a consumer is subscribed.
  - info:
      name: Subscribe to Topics
      type: http
    http:
      method: POST
      url: http://localhost:8080/consumers/:groupid/instances/:name/subscription
      params:
      - name: groupid
        value: ''
        type: path
        description: The consumer group ID
      - name: name
        value: ''
        type: path
        description: The unique name for the consumer instance
      body:
        type: json
        data: '{}'
    docs: Subscribes a consumer to one or more Kafka topics. The consumer will receive messages from all partitions of the
      subscribed topics, with partitions assigned by the Kafka broker.
  - info:
      name: Unsubscribe from Topics
      type: http
    http:
      method: DELETE
      url: http://localhost:8080/consumers/:groupid/instances/:name/subscription
      params:
      - name: groupid
        value: ''
        type: path
        description: The consumer group ID
      - name: name
        value: ''
        type: path
        description: The unique name for the consumer instance
    docs: Removes the current subscription for a consumer, unsubscribing it from all topics.
  - info:
      name: Poll for Records
      type: http
    http:
      method: GET
      url: http://localhost:8080/consumers/:groupid/instances/:name/records
      params:
      - name: groupid
        value: ''
        type: path
        description: The consumer group ID
      - name: name
        value: ''
        type: path
        description: The unique name for the consumer instance
      - name: timeout
        value: ''
        type: query
        description: Maximum time in milliseconds to wait for records
      - name: max_bytes
        value: ''
        type: query
        description: Maximum total bytes to return in the response
    docs: Fetches records from the topics to which the consumer is subscribed. Returns an empty array if no records are available.
      Calls are long-polled — the server waits up to the timeout for records to become available.
  - info:
      name: Commit Offsets
      type: http
    http:
      method: POST
      url: http://localhost:8080/consumers/:groupid/instances/:name/offsets
      params:
      - name: groupid
        value: ''
        type: path
        description: The consumer group ID
      - name: name
        value: ''
        type: path
        description: The unique name for the consumer instance
      body:
        type: json
        data: '{}'
    docs: Commits offsets for one or more topic partitions for the consumer. Committed offsets are used to resume consumption
      after a restart.
- info:
    name: Seek
    type: folder
  items:
  - info:
      name: Seek to Offset
      type: http
    http:
      method: POST
      url: http://localhost:8080/consumers/:groupid/instances/:name/positions
      params:
      - name: groupid
        value: ''
        type: path
        description: The consumer group ID
      - name: name
        value: ''
        type: path
        description: The unique name for the consumer instance
      body:
        type: json
        data: '{}'
    docs: Overrides the fetch offset for one or more topic partitions, allowing the consumer to start reading from a specific
      position.
- info:
    name: Topics
    type: folder
  items:
  - info:
      name: List Topics
      type: http
    http:
      method: GET
      url: http://localhost:8080/topics
    docs: Returns a list of all topic names available in the Kafka cluster.
  - info:
      name: List Topic Partitions
      type: http
    http:
      method: GET
      url: http://localhost:8080/topics/:topicname/partitions
      params:
      - name: topicname
        value: ''
        type: path
        description: The name of the Kafka topic
    docs: Returns partition metadata for all partitions of a topic, including leader, replicas, and in-sync replicas.
  - info:
      name: Check Bridge Health
      type: http
    http:
      method: GET
      url: http://localhost:8080/healthy
    docs: Returns HTTP 200 if the Bridge is healthy and connected to Kafka.
  - info:
      name: Check Bridge Readiness
      type: http
    http:
      method: GET
      url: http://localhost:8080/ready
    docs: Returns HTTP 200 if the Bridge is ready to accept requests.
bundled: true