Confluent | the Data Streaming Platform website screenshot

Confluent | the Data Streaming Platform

Confluent is a fully managed data streaming platform built by the original creators of Apache Kafka. It lets organizations stream, connect, process, and govern data in motion through a cloud-native service (Confluent Cloud) and the on-prem/self-managed Confluent Platform. Confluent's developer surface includes the Confluent Cloud REST API for managing clusters, environments, and access; the Kafka REST Proxy for producing and consuming events over HTTP; the Schema Registry REST API for governance of Avro, JSON Schema, and Protobuf schemas; the Kafka Connect REST API for managing connectors; the ksqlDB REST API for stream processing; and managed Apache Flink. Authentication is API-key based (Cloud) or HTTP/mTLS/OAuth (Platform).

6 APIs 0 Features
Apache FlinkApache KafkaConfluent CloudConnectorsData StreamingEvent StreamingKafka ConnectksqlDBReal-Time DataRESTSchema RegistryStream Processing

APIs

Confluent Cloud REST API

The Confluent Cloud REST API is the management plane for Confluent Cloud. It is used to manage organizations, environments, Kafka and Flink clusters, service accounts, API keys,...

Confluent Kafka REST API

The Kafka REST API (Confluent REST Proxy in self-managed deployments, Kafka REST in Cloud) provides HTTP access to Apache Kafka topics, consumers, partitions, brokers, and ACLs....

Confluent Schema Registry REST API

The Schema Registry REST API stores and serves Avro, JSON Schema, and Protobuf schemas with versioning and compatibility enforcement. It is available both as a managed Confluent...

Kafka Connect REST API

The Kafka Connect REST API manages connectors, tasks, and worker configuration. Operators use it to deploy, configure, pause, resume, and delete source and sink connectors, insp...

ksqlDB REST API

The ksqlDB REST API exposes ksqlDB, Confluent's streaming SQL engine, over HTTP. Clients submit streaming SQL statements, query streams and tables (push and pull queries), and i...

Confluent Cloud for Apache Flink REST API

The Confluent Cloud for Apache Flink REST API manages Flink compute pools, statements, and workspaces for stateful stream processing on Confluent Cloud. It is part of the Conflu...

Agent Skills

Bad_Frontmatter

AGENT SKILL

flink-udf

AGENT SKILL

good-skill

AGENT SKILL

inlined-refs

AGENT SKILL

kafka-schema-registry

AGENT SKILL

stale-expectations

AGENT SKILL

trigger-overlap

AGENT SKILL

Collections

Pricing Plans

Rate Limits

FinOps

Resources

🔗
AgentSkills
AgentSkills
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🌐
DeveloperPortal
DeveloperPortal
🔗
Documentation
Documentation
🔗
Cloud API Reference
Cloud API Reference
👥
GitHub
GitHub
📰
Blog
Blog
💰
Pricing
Pricing
🟢
StatusPage
StatusPage
🔗
Login
Login
🔗
Marketplace
Marketplace
🎓
Training
Training
📜
TermsOfService
TermsOfService
📜
PrivacyPolicy
PrivacyPolicy
🔗
LlmsText
LlmsText

Sources

apis.yml Raw ↑
opencollection: 1.0.0
info:
  name: Confluent Cloud REST API (selected)
  version: 2.0.0
request:
  auth:
    type: basic
    username: '{{username}}'
    password: '{{password}}'
items:
- info:
    name: Organizations
    type: folder
  items:
  - info:
      name: List organizations the caller can access
      type: http
    http:
      method: GET
      url: https://api.confluent.cloud/org/v2/organizations
      params:
      - name: page_size
        value: ''
        type: query
      - name: page_token
        value: ''
        type: query
    docs: List organizations the caller can access
  - info:
      name: Get an organization
      type: http
    http:
      method: GET
      url: https://api.confluent.cloud/org/v2/organizations/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Get an organization
- info:
    name: Environments
    type: folder
  items:
  - info:
      name: List environments
      type: http
    http:
      method: GET
      url: https://api.confluent.cloud/org/v2/environments
      params:
      - name: page_size
        value: ''
        type: query
      - name: page_token
        value: ''
        type: query
    docs: List environments
  - info:
      name: Create an environment
      type: http
    http:
      method: POST
      url: https://api.confluent.cloud/org/v2/environments
      body:
        type: json
        data: '{}'
    docs: Create an environment
  - info:
      name: Get an environment
      type: http
    http:
      method: GET
      url: https://api.confluent.cloud/org/v2/environments/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Get an environment
  - info:
      name: Update an environment
      type: http
    http:
      method: PATCH
      url: https://api.confluent.cloud/org/v2/environments/:id
      params:
      - name: id
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Update an environment
  - info:
      name: Delete an environment
      type: http
    http:
      method: DELETE
      url: https://api.confluent.cloud/org/v2/environments/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Delete an environment
- info:
    name: Service Accounts
    type: folder
  items:
  - info:
      name: List service accounts
      type: http
    http:
      method: GET
      url: https://api.confluent.cloud/iam/v2/service-accounts
      params:
      - name: page_size
        value: ''
        type: query
      - name: page_token
        value: ''
        type: query
    docs: List service accounts
  - info:
      name: Create a service account
      type: http
    http:
      method: POST
      url: https://api.confluent.cloud/iam/v2/service-accounts
      body:
        type: json
        data: '{}'
    docs: Create a service account
  - info:
      name: Get a service account
      type: http
    http:
      method: GET
      url: https://api.confluent.cloud/iam/v2/service-accounts/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Get a service account
  - info:
      name: Delete a service account
      type: http
    http:
      method: DELETE
      url: https://api.confluent.cloud/iam/v2/service-accounts/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Delete a service account
- info:
    name: API Keys
    type: folder
  items:
  - info:
      name: List API keys
      type: http
    http:
      method: GET
      url: https://api.confluent.cloud/iam/v2/api-keys
      params:
      - name: spec.owner
        value: ''
        type: query
      - name: spec.resource
        value: ''
        type: query
      - name: page_size
        value: ''
        type: query
      - name: page_token
        value: ''
        type: query
    docs: List API keys
  - info:
      name: Create an API key
      type: http
    http:
      method: POST
      url: https://api.confluent.cloud/iam/v2/api-keys
      body:
        type: json
        data: '{}'
    docs: Create an API key
  - info:
      name: Get an API key
      type: http
    http:
      method: GET
      url: https://api.confluent.cloud/iam/v2/api-keys/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Get an API key
  - info:
      name: Delete an API key
      type: http
    http:
      method: DELETE
      url: https://api.confluent.cloud/iam/v2/api-keys/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Delete an API key
- info:
    name: Clusters
    type: folder
  items:
  - info:
      name: List Kafka clusters
      type: http
    http:
      method: GET
      url: https://api.confluent.cloud/cmk/v2/clusters
      params:
      - name: environment
        value: ''
        type: query
      - name: page_size
        value: ''
        type: query
      - name: page_token
        value: ''
        type: query
    docs: List Kafka clusters
  - info:
      name: Create a Kafka cluster
      type: http
    http:
      method: POST
      url: https://api.confluent.cloud/cmk/v2/clusters
      body:
        type: json
        data: '{}'
    docs: Create a Kafka cluster
  - info:
      name: Get a Kafka cluster
      type: http
    http:
      method: GET
      url: https://api.confluent.cloud/cmk/v2/clusters/:id
      params:
      - name: id
        value: ''
        type: path
      - name: environment
        value: ''
        type: query
    docs: Get a Kafka cluster
  - info:
      name: Delete a Kafka cluster
      type: http
    http:
      method: DELETE
      url: https://api.confluent.cloud/cmk/v2/clusters/:id
      params:
      - name: id
        value: ''
        type: path
      - name: environment
        value: ''
        type: query
    docs: Delete a Kafka cluster
bundled: true