Airbyte public_declarative_source_definitions API

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

Operations 5

GET /workspaces/{workspaceId}/definitions/declarative_sources Airbyte List Declarative Source Definitions. #
POST /workspaces/{workspaceId}/definitions/declarative_sources Airbyte Create a Declarative Source Definition. #
GET /workspaces/{workspaceId}/definitions/declarative_sources/{definitionId} Airbyte Get Declarative Source Definition Details. #
PUT /workspaces/{workspaceId}/definitions/declarative_sources/{definitionId} Airbyte Update Declarative Source Definition Details. #
DELETE /workspaces/{workspaceId}/definitions/declarative_sources/{definitionId} Airbyte Delete a Declarative Source Definition. #

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-declarative-source-definitions-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-declarative-source-definitions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: airbyte-api Public Declarative Source Definitions 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_declarative_source_definitions
paths:
  /workspaces/{workspaceId}/definitions/declarative_sources:
    parameters:
    - name: workspaceId
      schema:
        format: uuid
        type: string
      in: path
      required: true
    get:
      tags:
      - public_declarative_source_definitions
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeclarativeSourceDefinitionsResponse'
              examples:
                listDeclarativeSourceDefinitions200Example:
                  summary: Default listDeclarativeSourceDefinitions 200 response
                  x-microcks-default: true
                  value:
                    previous: example
                    next: example
                    data: example
          description: Successful operation
        '403':
          description: Not allowed
        '404':
          description: Not found
      operationId: listDeclarativeSourceDefinitions
      x-speakeasy-alias: listDeclarativeSourceDefinitions
      x-speakeasy-group: DeclarativeSourceDefinitions
      summary: Airbyte List Declarative Source Definitions.
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      summary: Airbyte Create a Declarative Source Definition.
      x-speakeasy-entity-operation: DeclarativeSourceDefinition#create
      operationId: createDeclarativeSourceDefinition
      x-speakeasy-alias: createDeclarativeSourceDefinition
      x-speakeasy-group: DeclarativeSourceDefinitions
      tags:
      - public_declarative_source_definitions
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeclarativeSourceDefinitionResponse'
              examples:
                createDeclarativeSourceDefinition200Example:
                  summary: Default createDeclarativeSourceDefinition 200 response
                  x-microcks-default: true
                  value:
                    id: abc123
                    name: example-name
                    manifest: example
                    version: 1
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateDeclarativeSourceDefinitionRequest'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /workspaces/{workspaceId}/definitions/declarative_sources/{definitionId}:
    parameters:
    - name: workspaceId
      schema:
        format: uuid
        type: string
      in: path
      required: true
    - name: definitionId
      x-speakeasy-match: id
      schema:
        format: uuid
        type: string
      in: path
      required: true
    get:
      tags:
      - public_declarative_source_definitions
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeclarativeSourceDefinitionResponse'
              examples:
                getDeclarativeSourceDefinition200Example:
                  summary: Default getDeclarativeSourceDefinition 200 response
                  x-microcks-default: true
                  value:
                    id: abc123
                    name: example-name
                    manifest: example
                    version: 1
          description: Success
        '403':
          description: Not allowed
        '404':
          description: Not found
      operationId: getDeclarativeSourceDefinition
      x-speakeasy-alias: getDeclarativeSourceDefinition
      x-speakeasy-group: DeclarativeSourceDefinitions
      summary: Airbyte Get Declarative Source Definition Details.
      x-speakeasy-entity-operation: DeclarativeSourceDefinition#read
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    put:
      tags:
      - public_declarative_source_definitions
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateDeclarativeSourceDefinitionRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeclarativeSourceDefinitionResponse'
              examples:
                updateDeclarativeSourceDefinition200Example:
                  summary: Default updateDeclarativeSourceDefinition 200 response
                  x-microcks-default: true
                  value:
                    id: abc123
                    name: example-name
                    manifest: example
                    version: 1
          description: Success
        '403':
          description: Not allowed
        '404':
          description: Not found
      operationId: updateDeclarativeSourceDefinition
      x-speakeasy-alias: updateDeclarativeSourceDefinition
      x-speakeasy-group: DeclarativeSourceDefinitions
      summary: Airbyte Update Declarative Source Definition Details.
      x-speakeasy-entity-operation: DeclarativeSourceDefinition#update
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    delete:
      tags:
      - public_declarative_source_definitions
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeclarativeSourceDefinitionResponse'
              examples:
                deleteDeclarativeSourceDefinition200Example:
                  summary: Default deleteDeclarativeSourceDefinition 200 response
                  x-microcks-default: true
                  value:
                    id: abc123
                    name: example-name
                    manifest: example
                    version: 1
          description: Success
        '403':
          description: Not allowed
        '404':
          description: Not found
      operationId: deleteDeclarativeSourceDefinition
      x-speakeasy-alias: deleteDeclarativeSourceDefinition
      x-speakeasy-group: DeclarativeSourceDefinitions
      summary: Airbyte Delete a Declarative Source Definition.
      x-speakeasy-entity-operation: DeclarativeSourceDefinition#delete
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    ManifestVersion:
      x-speakeasy-component: true
      type: integer
      format: int64
    UpdateDeclarativeSourceDefinitionRequest:
      type: object
      x-speakeasy-component: true
      required:
      - manifest
      properties:
        manifest:
          $ref: '#/components/schemas/DeclarativeManifest'
    DeclarativeSourceDefinitionResponse:
      type: object
      x-speakeasy-component: true
      required:
      - id
      - name
      - manifest
      - version
      properties:
        id:
          format: UUID
          type: string
        name:
          type: string
        manifest:
          $ref: '#/components/schemas/DeclarativeManifest'
        version:
          x-speakeasy-terraform-ignore: true
          $ref: '#/components/schemas/ManifestVersion'
    DeclarativeSourceDefinitionsResponse:
      title: Root Type for DeclarativeSourceDefinitionsResponse
      description: ''
      x-speakeasy-component: true
      required:
      - data
      type: object
      properties:
        previous:
          type: string
        next:
          type: string
        data:
          type: array
          items:
            $ref: '#/components/schemas/DeclarativeSourceDefinitionResponse'
    CreateDeclarativeSourceDefinitionRequest:
      type: object
      x-speakeasy-component: true
      required:
      - workspaceId
      - name
      - manifest
      properties:
        name:
          type: string
        manifest:
          $ref: '#/components/schemas/DeclarativeManifest'
    DeclarativeManifest:
      x-speakeasy-component: true
      x-speakeasy-type-override: any
      x-speakeasy-terraform-custom-type:
        imports:
        - github.com/hashicorp/terraform-plugin-framework-jsontypes/jsontypes
        schemaType: jsontypes.NormalizedType{}
        valueType: jsontypes.Normalized
      description: Low code CDK manifest JSON object
      type: object