Airbyte public_dataplanes API

The public_dataplanes API from Airbyte — 2 operation(s) for public_dataplanes.

Operations 5

GET /dataplanes Airbyte List Dataplanes #
POST /dataplanes Airbyte Create a Dataplane #
GET /dataplanes/{dataplaneId} Airbyte Get a Dataplane #
PATCH /dataplanes/{dataplaneId} Airbyte Update a Dataplane #
DELETE /dataplanes/{dataplaneId} Airbyte Delete a Dataplane #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/airbyte-public-dataplanes-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

airbyte-public-dataplanes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: airbyte-api Public Dataplanes API
  version: 1.0.0
  description: Programmatically control Airbyte Cloud, OSS & Enterprise.
servers:
- url: https://api.airbyte.com/v1
  description: Airbyte API v1
tags:
- name: public_dataplanes
paths:
  /dataplanes:
    get:
      tags:
      - public_dataplanes
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataplanesResponse'
              examples:
                listDataplanes200Example:
                  summary: Default listDataplanes 200 response
                  x-microcks-default: true
                  value:
                    data: example
          description: List dataplanes accessible to the current user
        '403':
          description: Not allowed
        '404':
          description: Not found
      operationId: listDataplanes
      summary: Airbyte List Dataplanes
      x-speakeasy-alias: listDataplanes
      x-speakeasy-group: Dataplanes
      parameters:
      - name: regionIds
        description: The UUIDs of the regions to filter by. If provided, only dataplanes belonging to these regions will be returned. Empty list will retrieve all dataplanes accessible to the current user.
        schema:
          type: array
          items:
            format: uuid
            type: string
        in: query
        required: false
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DataplaneCreateRequest'
        required: true
      tags:
      - public_dataplanes
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataplaneCreateResponseBody'
              examples:
                createDataplane200Example:
                  summary: Default createDataplane 200 response
                  x-microcks-default: true
                  value: {}
          description: Successfully created dataplane
        '400':
          description: Invalid data
        '403':
          description: Not allowed
        '404':
          description: Not found
      operationId: createDataplane
      summary: Airbyte Create a Dataplane
      x-speakeasy-alias: createDataplane
      x-speakeasy-group: Dataplanes
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /dataplanes/{dataplaneId}:
    parameters:
    - name: dataplaneId
      schema:
        type: string
        format: uuid
      in: path
      required: true
    get:
      tags:
      - public_dataplanes
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataplaneResponse'
              examples:
                getDataplane200Example:
                  summary: Default getDataplane 200 response
                  x-microcks-default: true
                  value:
                    dataplaneId: abc123
                    name: example-name
                    regionId: abc123
                    enabled: true
                    createdAt: example
                    updatedAt: example
          description: Get a dataplane by the id in the path
        '403':
          description: Not allowed
        '404':
          description: Not found
      operationId: getDataplane
      x-speakeasy-alias: getDataplane
      x-speakeasy-group: Dataplanes
      summary: Airbyte Get a Dataplane
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    patch:
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DataplanePatchRequest'
        required: true
      tags:
      - public_dataplanes
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataplaneResponse'
              examples:
                updateDataplane200Example:
                  summary: Default updateDataplane 200 response
                  x-microcks-default: true
                  value:
                    dataplaneId: abc123
                    name: example-name
                    regionId: abc123
                    enabled: true
                    createdAt: example
                    updatedAt: example
          description: Successfully updated dataplane
        '400':
          description: Invalid data
        '403':
          description: Not allowed
        '404':
          description: Not found
      operationId: updateDataplane
      x-speakeasy-alias: updateDataplane
      x-speakeasy-group: Dataplanes
      summary: Airbyte Update a Dataplane
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    delete:
      tags:
      - public_dataplanes
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataplaneResponse'
              examples:
                deleteDataplane200Example:
                  summary: Default deleteDataplane 200 response
                  x-microcks-default: true
                  value:
                    dataplaneId: abc123
                    name: example-name
                    regionId: abc123
                    enabled: true
                    createdAt: example
                    updatedAt: example
          description: Successfully deleted dataplane
        '403':
          description: Not allowed
        '404':
          description: Not found
      operationId: deleteDataplane
      x-speakeasy-alias: deleteDataplane
      x-speakeasy-group: Dataplanes
      summary: Airbyte Delete a Dataplane
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    DataplaneResponse:
      type: object
      required:
      - dataplaneId
      - name
      - regionId
      - enabled
      - createdAt
      - updatedAt
      properties:
        dataplaneId:
          type: string
          format: uuid
        name:
          type: string
        regionId:
          type: string
          format: uuid
        enabled:
          type: boolean
        createdAt:
          type: string
        updatedAt:
          type: string
      x-speakeasy-entity: Dataplane
      x-speakeasy-param-suppress-computed-diff: true
      x-speakeasy-component: true
    DataplanesResponse:
      type: object
      required:
      - data
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/DataplaneResponse'
      x-speakeasy-component: true
    DataplanePatchRequest:
      type: object
      properties:
        name:
          type: string
        enabled:
          type: boolean
      x-speakeasy-entity: Dataplane
      x-speakeasy-param-suppress-computed-diff: true
      x-speakeasy-component: true
    DataplaneCreateRequest:
      type: object
      required:
      - regionId
      - name
      properties:
        regionId:
          type: string
          format: uuid
        name:
          type: string
        enabled:
          type: boolean
      x-speakeasy-entity: Dataplane
      x-speakeasy-param-suppress-computed-diff: true
      x-speakeasy-component: true