Airbyte public_regions API

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

Operations 5

GET /regions Airbyte List Regions #
POST /regions Airbyte Create a Region #
GET /regions/{regionId} Airbyte Get a Region #
PATCH /regions/{regionId} Airbyte Update a Region #
DELETE /regions/{regionId} Airbyte Delete a Region #

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-regions-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-regions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: airbyte-api Public Regions 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_regions
paths:
  /regions:
    get:
      tags:
      - public_regions
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RegionsResponse'
              examples:
                listRegions200Example:
                  summary: Default listRegions 200 response
                  x-microcks-default: true
                  value:
                    data: example
          description: List all regions for the organization
        '403':
          description: Not allowed
      operationId: listRegions
      summary: Airbyte List Regions
      x-speakeasy-alias: listRegions
      x-speakeasy-group: Regions
      parameters:
      - name: organizationId
        description: The UUID of the organization to list regions for
        schema:
          type: string
          format: uuid
        in: query
        required: true
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RegionCreateRequest'
        required: true
      tags:
      - public_regions
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RegionResponse'
              examples:
                createRegion200Example:
                  summary: Default createRegion 200 response
                  x-microcks-default: true
                  value:
                    regionId: abc123
                    name: example-name
                    organizationId: abc123
                    enabled: true
                    createdAt: example
                    updatedAt: example
          description: Successfully created region
        '400':
          description: Invalid data
        '403':
          description: Not allowed
      operationId: createRegion
      summary: Airbyte Create a Region
      x-speakeasy-alias: createRegion
      x-speakeasy-group: Dataplanes
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /regions/{regionId}:
    parameters:
    - name: regionId
      schema:
        type: string
        format: uuid
      in: path
      required: true
    get:
      tags:
      - public_regions
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RegionResponse'
              examples:
                getRegion200Example:
                  summary: Default getRegion 200 response
                  x-microcks-default: true
                  value:
                    regionId: abc123
                    name: example-name
                    organizationId: abc123
                    enabled: true
                    createdAt: example
                    updatedAt: example
          description: Get a region by the id in the path
        '403':
          description: Not allowed
        '404':
          description: Not found
      operationId: getRegion
      x-speakeasy-alias: getRegion
      x-speakeasy-group: Regions
      summary: Airbyte Get a Region
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    patch:
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RegionPatchRequest'
        required: true
      tags:
      - public_regions
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RegionResponse'
              examples:
                updateRegion200Example:
                  summary: Default updateRegion 200 response
                  x-microcks-default: true
                  value:
                    regionId: abc123
                    name: example-name
                    organizationId: abc123
                    enabled: true
                    createdAt: example
                    updatedAt: example
          description: Successfully updated region
        '400':
          description: Invalid data
        '403':
          description: Not allowed
        '404':
          description: Not found
      operationId: updateRegion
      x-speakeasy-alias: updateRegion
      x-speakeasy-group: Dataplanes
      summary: Airbyte Update a Region
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    delete:
      tags:
      - public_regions
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RegionResponse'
              examples:
                deleteRegion200Example:
                  summary: Default deleteRegion 200 response
                  x-microcks-default: true
                  value:
                    regionId: abc123
                    name: example-name
                    organizationId: abc123
                    enabled: true
                    createdAt: example
                    updatedAt: example
          description: Successfully deleted region
        '403':
          description: Not allowed
        '404':
          description: Not found
      operationId: deleteRegion
      x-speakeasy-alias: deleteRegion
      x-speakeasy-group: Regions
      summary: Airbyte Delete a Region
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    RegionResponse:
      type: object
      required:
      - regionId
      - name
      - organizationId
      - enabled
      - createdAt
      - updatedAt
      properties:
        regionId:
          type: string
          format: uuid
        name:
          type: string
        organizationId:
          type: string
          format: uuid
        enabled:
          type: boolean
        createdAt:
          type: string
        updatedAt:
          type: string
      x-speakeasy-entity: Region
      x-speakeasy-param-suppress-computed-diff: true
      x-speakeasy-component: true
    RegionCreateRequest:
      type: object
      required:
      - name
      - organizationId
      properties:
        name:
          type: string
        organizationId:
          type: string
          format: uuid
        enabled:
          type: boolean
      x-speakeasy-entity: Region
      x-speakeasy-param-suppress-computed-diff: true
      x-speakeasy-component: true
    RegionsResponse:
      type: object
      required:
      - data
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/RegionResponse'
      x-speakeasy-component: true
    RegionPatchRequest:
      type: object
      properties:
        name:
          type: string
        enabled:
          type: boolean
      x-speakeasy-entity: Region
      x-speakeasy-param-suppress-computed-diff: true
      x-speakeasy-component: true