Airbyte public_streams API

The public_streams API from Airbyte — 1 operation(s) for public_streams.

Operations 1

GET /streams Airbyte Get Stream Properties #

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-streams-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-streams-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: airbyte-api Public Streams 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_streams
paths:
  /streams:
    get:
      tags:
      - public_streams
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StreamPropertiesResponse'
              examples:
                getStreamProperties200Example:
                  summary: Default getStreamProperties 200 response
                  x-microcks-default: true
                  value:
                  - streamName: example-name
                    syncModes: example
                    streamnamespace: example-name
                    defaultCursorField: example
                    sourceDefinedCursorField: true
                    sourceDefinedPrimaryKey: example
                    propertyFields: example
          description: Get the available streams properties for a source/destination pair.
        '400':
          description: Required parameters are missing
        '403':
          description: Not allowed
        '404':
          description: Not found
      operationId: getStreamProperties
      x-speakeasy-alias: getStreamProperties
      x-speakeasy-group: Streams
      summary: Airbyte Get Stream Properties
      parameters:
      - name: sourceId
        description: ID of the source
        schema:
          format: UUID
          type: string
        in: query
        required: true
      - name: destinationId
        description: ID of the destination
        schema:
          format: UUID
          type: string
        in: query
        required: false
      - name: ignoreCache
        description: If true pull the latest schema from the source, else pull from cache (default false)
        schema:
          type: boolean
          default: false
        in: query
        required: false
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    StreamPropertiesResponse:
      description: A list of stream properties.
      type: array
      items:
        $ref: '#/components/schemas/StreamProperties'
      x-speakeasy-component: true
    StreamProperties:
      description: The stream properties associated with a connection.
      type: object
      properties:
        streamName:
          type: string
        syncModes:
          type: array
          items:
            $ref: '#/components/schemas/ConnectionSyncModeEnum'
        streamnamespace:
          type: string
        defaultCursorField:
          type: array
          items:
            type: string
        sourceDefinedCursorField:
          type: boolean
        sourceDefinedPrimaryKey:
          type: array
          items:
            type: array
            items:
              type: string
        propertyFields:
          type: array
          items:
            type: array
            items:
              type: string
      x-speakeasy-component: true
    ConnectionSyncModeEnum:
      enum:
      - full_refresh_overwrite
      - full_refresh_overwrite_deduped
      - full_refresh_append
      - full_refresh_update
      - full_refresh_soft_delete
      - incremental_append
      - incremental_deduped_history
      - incremental_update
      - incremental_soft_delete
      x-speakeasy-component: true