Airbyte · Arazzo Workflow

Airbyte Bootstrap an Application and Access Token

Version 1.0.0

Create an API application to mint client credentials, read it back, then exchange those credentials for a bearer access token.

1 workflow 1 source API 1 provider
View Spec View on GitHub Data IntegrationETLELTOpen-SourceData PipelineConnectorsDataArazzoWorkflows

Provider

airbyte

Workflows

bootstrap-application-token
Create an application, confirm it, and mint a bearer access token from its credentials.
Creates an application to obtain client credentials, reads it back, and exchanges the credentials for an access token.
3 steps inputs: applicationName outputs: accessToken, applicationId, clientId
1
createApplication
Create the application. The response carries the clientId and clientSecret used to mint access tokens.
2
getApplication
Read the application back by id to confirm it persisted.
3
createAccessToken
Exchange the application's client credentials for a bearer access token using the client_credentials grant.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Airbyte Bootstrap an Application and Access Token
  summary: Create an API application to mint client credentials, read it back, then exchange those credentials for a bearer access token.
  description: >-
    The credential bootstrap flow for the Airbyte API. It creates an
    Application, which returns a clientId and clientSecret, reads the
    application back by id to confirm it persisted, and then exchanges the
    client credentials for a bearer access token that can be used to authorize
    subsequent API calls. Every step inlines its request so the flow can be
    read and executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: publicApplicationsApi
  url: ../openapi/airbyte-public-applications-api-openapi.yml
  type: openapi
workflows:
- workflowId: bootstrap-application-token
  summary: Create an application, confirm it, and mint a bearer access token from its credentials.
  description: >-
    Creates an application to obtain client credentials, reads it back, and
    exchanges the credentials for an access token.
  inputs:
    type: object
    required:
    - applicationName
    properties:
      applicationName:
        type: string
        description: Name for the new API application.
  steps:
  - stepId: createApplication
    description: >-
      Create the application. The response carries the clientId and
      clientSecret used to mint access tokens.
    operationId: createApplication
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.applicationName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      applicationId: $response.body#/id
      clientId: $response.body#/clientId
      clientSecret: $response.body#/clientSecret
  - stepId: getApplication
    description: Read the application back by id to confirm it persisted.
    operationId: getApplication
    parameters:
    - name: applicationId
      in: path
      value: $steps.createApplication.outputs.applicationId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      applicationId: $response.body#/id
      name: $response.body#/name
  - stepId: createAccessToken
    description: >-
      Exchange the application's client credentials for a bearer access token
      using the client_credentials grant.
    operationId: createAccessToken
    requestBody:
      contentType: application/json
      payload:
        client_id: $steps.createApplication.outputs.clientId
        client_secret: $steps.createApplication.outputs.clientSecret
        grant-type: client_credentials
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      accessToken: $response.body#/access_token
      tokenType: $response.body#/token_type
      expiresIn: $response.body#/expires_in
  outputs:
    applicationId: $steps.createApplication.outputs.applicationId
    clientId: $steps.createApplication.outputs.clientId
    accessToken: $steps.createAccessToken.outputs.accessToken

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/airbyte-application-token-bootstrap-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.