Airtable · Arazzo Workflow

Airtable Audit Base Schemas

Version 1.0.0

Enumerate accessible bases and inspect the schema of one of them.

1 workflow 1 source API 1 provider
View Spec View on GitHub ApplicationCollaborationDataDatabasesLow-CodeProductivitySpreadsheetsArazzoWorkflows

Provider

airtable

Workflows

audit-base-schemas
List accessible bases and inspect one base's schema.
Lists all bases accessible to the authenticated token and then retrieves the schema of a base resolved from the first entry of that list.
2 steps inputs: offset outputs: bases, tables
1
listBases
List all bases the authenticated token has access to, optionally using a pagination cursor to fetch a subsequent page.
2
inspectSchema
Retrieve the schema of the first base from the list to inspect its tables, fields, and views.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Airtable Audit Base Schemas
  summary: Enumerate accessible bases and inspect the schema of one of them.
  description: >-
    Supports schema auditing by first listing all bases the authenticated token
    can reach, then drilling into the schema of a single base resolved from that
    list to inspect its tables, fields, and views. Every step spells out its
    request inline so the flow can be read and executed without opening the
    underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: basesApi
  url: ../openapi/airtable-bases-api-openapi.yml
  type: openapi
workflows:
- workflowId: audit-base-schemas
  summary: List accessible bases and inspect one base's schema.
  description: >-
    Lists all bases accessible to the authenticated token and then retrieves the
    schema of a base resolved from the first entry of that list.
  inputs:
    type: object
    properties:
      offset:
        type: string
        description: Optional pagination cursor from a previous listBases response.
  steps:
  - stepId: listBases
    description: >-
      List all bases the authenticated token has access to, optionally using a
      pagination cursor to fetch a subsequent page.
    operationId: listBases
    parameters:
    - name: offset
      in: query
      value: $inputs.offset
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      bases: $response.body#/bases
      firstBaseId: $response.body#/bases/0/id
      offset: $response.body#/offset
  - stepId: inspectSchema
    description: >-
      Retrieve the schema of the first base from the list to inspect its tables,
      fields, and views.
    operationId: getBaseSchema
    parameters:
    - name: baseId
      in: path
      value: $steps.listBases.outputs.firstBaseId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      tables: $response.body#/tables
  outputs:
    bases: $steps.listBases.outputs.bases
    tables: $steps.inspectSchema.outputs.tables

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/airtable-audit-base-schemas-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.