Cross-Provider Workflow

Forecast to Airtable Log and Slack Alert

Version 1.0.0

Fetch a forecast, log it to Airtable, then alert the team in Slack.

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

Providers Orchestrated

weatherapi airtable slack

Workflows

forecast-log-alert
Fetch a forecast, log it to Airtable, and alert Slack.
Retrieves a forecast from WeatherAPI, logs it to an Airtable base, and posts an alert to Slack via chat.postMessage.
3 steps inputs: baseId, channel, days, location, tableIdOrName outputs: forecastText, messageTs, recordId
1
get-forecast
$sourceDescriptions.weatherapiApi.getForecast
Fetch the forecast for the requested location.
2
log-forecast
$sourceDescriptions.airtableApi.createRecords
Log the forecast as a record in the Airtable base.
3
alert-slack
$sourceDescriptions.slackChatApi.postChatPostmessage
Post a forecast alert to the Slack channel.

Source API Descriptions

Arazzo Workflow Specification

geo-weatherapi-forecast-airtable-slack.yml Raw ↑
arazzo: 1.0.1
info:
  title: Forecast to Airtable Log and Slack Alert
  summary: Fetch a forecast, log it to Airtable, then alert the team in Slack.
  description: >-
    A weather operations workflow that retrieves a forecast for a location from
    WeatherAPI, logs it as a record in an Airtable base, and posts a summary alert to a
    Slack channel. Demonstrates chaining a weather provider, a no-code database
    provider, and a team messaging provider for forecast tracking and alerting.
  version: 1.0.0
sourceDescriptions:
  - name: weatherapiApi
    url: https://raw.githubusercontent.com/api-evangelist/weatherapi/refs/heads/main/openapi/weatherapi-weather-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
  - name: slackChatApi
    url: https://raw.githubusercontent.com/api-evangelist/slack/refs/heads/main/openapi/slack-chat-api-openapi.yml
    type: openapi
workflows:
  - workflowId: forecast-log-alert
    summary: Fetch a forecast, log it to Airtable, and alert Slack.
    description: >-
      Retrieves a forecast from WeatherAPI, logs it to an Airtable base, and posts an
      alert to Slack via chat.postMessage.
    inputs:
      type: object
      properties:
        location:
          type: string
        days:
          type: integer
        baseId:
          type: string
        tableIdOrName:
          type: string
        channel:
          type: string
    steps:
      - stepId: get-forecast
        description: Fetch the forecast for the requested location.
        operationId: $sourceDescriptions.weatherapiApi.getForecast
        parameters:
          - name: q
            in: query
            value: $inputs.location
          - name: days
            in: query
            value: $inputs.days
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          locationName: $response.body#/location/name
          forecastText: $response.body#/forecast/forecastday/0/day/condition/text
          maxTemp: $response.body#/forecast/forecastday/0/day/maxtemp_c
      - stepId: log-forecast
        description: Log the forecast as a record in the Airtable base.
        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:
                  Location: $steps.get-forecast.outputs.locationName
                  Condition: $steps.get-forecast.outputs.forecastText
                  MaxTemp: $steps.get-forecast.outputs.maxTemp
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          recordId: $response.body#/records/0/id
      - stepId: alert-slack
        description: Post a forecast alert to the Slack channel.
        operationId: $sourceDescriptions.slackChatApi.postChatPostmessage
        requestBody:
          contentType: application/x-www-form-urlencoded
          payload:
            channel: $inputs.channel
            text: $steps.get-forecast.outputs.forecastText
        successCriteria:
          - condition: $statusCode == 200
          - condition: $response.body#/ok == true
        outputs:
          messageTs: $response.body#/ts
    outputs:
      forecastText: $steps.get-forecast.outputs.forecastText
      recordId: $steps.log-forecast.outputs.recordId
      messageTs: $steps.alert-slack.outputs.messageTs

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/geo-weatherapi-forecast-airtable-slack"
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.