Cross-Provider Workflow

Airtable Records to Snowflake Table

Version 1.0.0

List records from an Airtable table, then insert them into a Snowflake table.

1 workflow 2 source APIs 2 providers
View Spec View on GitHub ArazzoWorkflowsCross-Provider

Providers Orchestrated

airtable snowflake

Workflows

airtable-to-snowflake
Pull Airtable records and insert them into Snowflake.
Lists records from an Airtable table, then submits a Snowflake INSERT statement binding the record values so the operational data lands in the warehouse.
2 steps inputs: baseId, insertStatement, tableIdOrName, warehouse outputs: records, statementHandle
1
list-records
$sourceDescriptions.airtableApi.listRecords
List the records from the Airtable table.
2
insert-to-snowflake
$sourceDescriptions.snowflakeSqlApi.SubmitStatement
Insert the Airtable records into a Snowflake table.

Source API Descriptions

Arazzo Workflow Specification

data-airtable-records-to-snowflake-table.yml Raw ↑
arazzo: 1.0.1
info:
  title: Airtable Records to Snowflake Table
  summary: List records from an Airtable table, then insert them into a Snowflake table.
  description: >-
    A data pipeline workflow that reads records from an Airtable base and loads them into
    a Snowflake table via a SQL INSERT statement, promoting operational data captured in
    a no-code tool into the analytics warehouse. Demonstrates moving collaborative data
    into a cloud data warehouse.
  version: 1.0.0
sourceDescriptions:
  - name: airtableApi
    url: https://raw.githubusercontent.com/api-evangelist/airtable/refs/heads/main/openapi/airtable-records-api-openapi.yml
    type: openapi
  - name: snowflakeSqlApi
    url: https://raw.githubusercontent.com/api-evangelist/snowflake/refs/heads/main/openapi/_original/sqlapi.yaml
    type: openapi
workflows:
  - workflowId: airtable-to-snowflake
    summary: Pull Airtable records and insert them into Snowflake.
    description: >-
      Lists records from an Airtable table, then submits a Snowflake INSERT statement
      binding the record values so the operational data lands in the warehouse.
    inputs:
      type: object
      properties:
        baseId:
          type: string
        tableIdOrName:
          type: string
        insertStatement:
          type: string
        warehouse:
          type: string
    steps:
      - stepId: list-records
        description: List the records from the Airtable table.
        operationId: $sourceDescriptions.airtableApi.listRecords
        parameters:
          - name: baseId
            in: path
            value: $inputs.baseId
          - name: tableIdOrName
            in: path
            value: $inputs.tableIdOrName
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          records: $response.body#/records
      - stepId: insert-to-snowflake
        description: Insert the Airtable records into a Snowflake table.
        operationId: $sourceDescriptions.snowflakeSqlApi.SubmitStatement
        requestBody:
          contentType: application/json
          payload:
            statement: $inputs.insertStatement
            warehouse: $inputs.warehouse
            bindings:
              "1":
                type: TEXT
                value: $steps.list-records.outputs.records
            timeout: 120
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          statementHandle: $response.body#/statementHandle
    outputs:
      records: $steps.list-records.outputs.records
      statementHandle: $steps.insert-to-snowflake.outputs.statementHandle

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/data-airtable-records-to-snowflake-table"
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.