Cross-Provider Workflow

Snowflake Cortex Search to Airtable Records

Version 1.0.0

Query a Snowflake Cortex Search service, then write the matches into an Airtable table.

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

Providers Orchestrated

snowflake airtable

Workflows

cortex-search-to-airtable
Run a Cortex Search query, then store the matches in Airtable.
Queries a Snowflake Cortex Search service and creates Airtable records from the ranked results for review.
2 steps inputs: baseId, database, fields, query, schema, serviceName, tableIdOrName outputs: createdRecords, results
1
search
$sourceDescriptions.snowflakeCortexSearchApi.queryCortexSearchService
Query the Snowflake Cortex Search service.
2
store-matches
$sourceDescriptions.airtableApi.createRecords
Create Airtable records from the search matches.

Source API Descriptions

Arazzo Workflow Specification

data-snowflake-cortex-search-to-airtable.yml Raw ↑
arazzo: 1.0.1
info:
  title: Snowflake Cortex Search to Airtable Records
  summary: Query a Snowflake Cortex Search service, then write the matches into an Airtable table.
  description: >-
    A data and AI workflow that runs a query against a Snowflake Cortex Search service to
    retrieve semantically ranked results, then creates Airtable records from those matches
    so they can be reviewed and curated. Demonstrates pairing Snowflake's AI search with a
    collaborative no-code database.
  version: 1.0.0
sourceDescriptions:
  - name: snowflakeCortexSearchApi
    url: https://raw.githubusercontent.com/api-evangelist/snowflake/refs/heads/main/openapi/snowflake-cortex-search-service-api-openapi.yml
    type: openapi
  - name: airtableApi
    url: https://raw.githubusercontent.com/api-evangelist/airtable/refs/heads/main/openapi/airtable-records-api-openapi.yml
    type: openapi
workflows:
  - workflowId: cortex-search-to-airtable
    summary: Run a Cortex Search query, then store the matches in Airtable.
    description: >-
      Queries a Snowflake Cortex Search service and creates Airtable records from the
      ranked results for review.
    inputs:
      type: object
      properties:
        database:
          type: string
        schema:
          type: string
        serviceName:
          type: string
        query:
          type: string
        baseId:
          type: string
        tableIdOrName:
          type: string
        fields:
          type: object
    steps:
      - stepId: search
        description: Query the Snowflake Cortex Search service.
        operationId: $sourceDescriptions.snowflakeCortexSearchApi.queryCortexSearchService
        parameters:
          - name: database
            in: path
            value: $inputs.database
          - name: schema
            in: path
            value: $inputs.schema
          - name: service_name
            in: path
            value: $inputs.serviceName
        requestBody:
          contentType: application/json
          payload:
            query: $inputs.query
            limit: 10
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          results: $response.body#/results
      - stepId: store-matches
        description: Create Airtable records from the search matches.
        operationId: $sourceDescriptions.airtableApi.createRecords
        parameters:
          - name: baseId
            in: path
            value: $inputs.baseId
          - name: tableIdOrName
            in: path
            value: $inputs.tableIdOrName
        requestBody:
          contentType: application/json
          payload:
            records:
              - fields: $inputs.fields
            typecast: true
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          createdRecords: $response.body#/records
    outputs:
      results: $steps.search.outputs.results
      createdRecords: $steps.store-matches.outputs.createdRecords

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-snowflake-cortex-search-to-airtable"
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.