Airbyte public_tags API

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

Operations 5

GET /tags Airbyte List All Tags #
POST /tags Airbyte Create a Tag #
GET /tags/{tagId} Airbyte Get a Tag #
DELETE /tags/{tagId} Airbyte Delete a Tag #
PATCH /tags/{tagId} Airbyte Update a Tag #

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-tags-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-tags-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: airbyte-api Public Tags 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_tags
paths:
  /tags:
    get:
      tags:
      - public_tags
      summary: Airbyte List All Tags
      description: Lists all tags
      parameters:
      - name: workspaceIds
        in: query
        schema:
          type: array
          items:
            format: uuid
            type: string
        required: false
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TagsResponse'
              examples:
                listTags200Example:
                  summary: Default listTags 200 response
                  x-microcks-default: true
                  value:
                    data: example
          description: List Tags.
        '403':
          description: Not allowed
        '404':
          description: Not found
      operationId: listTags
      x-speakeasy-alias: listTags
      x-speakeasy-group: Tags
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      tags:
      - public_tags
      summary: Airbyte Create a Tag
      description: Create a tag
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TagCreateRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TagResponse'
              examples:
                createTag200Example:
                  summary: Default createTag 200 response
                  x-microcks-default: true
                  value:
                    tagId: abc123
                    name: example-name
                    color: example
                    workspaceId: abc123
          description: Successful operation
        '400':
          description: Invalid data
        '403':
          description: Not allowed
        '409':
          description: Tag with same name already exists
      operationId: createTag
      x-speakeasy-alias: createTag
      x-speakeasy-group: Tags
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /tags/{tagId}:
    parameters:
    - name: tagId
      schema:
        $ref: '#/components/schemas/TagId'
      in: path
      required: true
    get:
      tags:
      - public_tags
      summary: Airbyte Get a Tag
      description: Get a tag
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TagResponse'
              examples:
                getTag200Example:
                  summary: Default getTag 200 response
                  x-microcks-default: true
                  value:
                    tagId: abc123
                    name: example-name
                    color: example
                    workspaceId: abc123
          description: Successful operation
        '403':
          description: Not allowed
        '404':
          description: Not found
      operationId: getTag
      x-speakeasy-alias: getTag
      x-speakeasy-group: Tags
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    delete:
      tags:
      - public_tags
      summary: Airbyte Delete a Tag
      description: Delete a tag
      responses:
        '204':
          description: The resource was deleted successfully
        '403':
          description: Not allowed
        '404':
          description: Not found
      operationId: deleteTag
      x-speakeasy-alias: deleteTag
      x-speakeasy-group: Tags
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    patch:
      tags:
      - public_tags
      summary: Airbyte Update a Tag
      description: Update a tag
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TagPatchRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TagResponse'
              examples:
                updateTag200Example:
                  summary: Default updateTag 200 response
                  x-microcks-default: true
                  value:
                    tagId: abc123
                    name: example-name
                    color: example
                    workspaceId: abc123
          description: Successful operation
        '400':
          description: Invalid data
        '403':
          description: Not allowed
        '404':
          description: Not found
      operationId: updateTag
      x-speakeasy-alias: updateTag
      x-speakeasy-group: Tags
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    TagCreateRequest:
      required:
      - name
      - color
      - workspaceId
      type: object
      properties:
        name:
          type: string
        color:
          type: string
        workspaceId:
          $ref: '#/components/schemas/WorkspaceId'
      x-speakeasy-entity: Tag
      x-speakeasy-component: true
    TagPatchRequest:
      required:
      - name
      - color
      type: object
      properties:
        name:
          type: string
        color:
          type: string
      x-speakeasy-entity: Tag
      x-speakeasy-component: true
    TagsResponse:
      title: Root Type for TagsResponse
      description: ''
      required:
      - data
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/TagResponse'
      x-speakeasy-component: true
    TagId:
      type: string
      format: uuid
      x-speakeasy-component: true
    WorkspaceId:
      type: string
      format: uuid
      x-speakeasy-component: true
    TagResponse:
      title: Root Type for TagResponse
      description: Provides details of a single tag.
      type: object
      required:
      - tagId
      - name
      - color
      - workspaceId
      properties:
        tagId:
          $ref: '#/components/schemas/TagId'
        name:
          type: string
        color:
          description: A hexadecimal color value
          type: string
        workspaceId:
          $ref: '#/components/schemas/WorkspaceId'
      example:
        tagId: 18dccc91-0ab1-4f72-9ed7-0b8fc27c5826
        name: Analytics Team
        color: FF5733
        workspaceId: 871d9b60-11d1-44cb-8c92-c246d53bf87e
      x-speakeasy-component: true