Tomorrow.io · Arazzo Workflow

Tomorrow.io Realtime vs Climate Normals Benchmark

Version 1.0.0

Compare current conditions for a location against its long-term monthly climate normals.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub WeatherForecastClimateRiskAir QualityPollenLightningSevere WeatherMapsRoutingSatelliteMicrosatellitesRadarGeospatialAlertsArazzoWorkflows

Provider

tomorrow-io

Workflows

realtime-vs-climate-normals
Read realtime conditions and benchmark them against climate normals.
Fetches current temperature for a location, retrieves long-term monthly climate normals for the same location, and branches on whether the present reading is anomalously warm.
2 steps inputs: anomalyThreshold, apikey, fields, location, units outputs: climateMonths, currentTemperature
1
getRealtime
Retrieve the current temperature and conditions for the target location.
2
getNormals
Retrieve the monthly climate normals for the same location to establish a seasonal baseline.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Tomorrow.io Realtime vs Climate Normals Benchmark
  summary: Compare current conditions for a location against its long-term monthly climate normals.
  description: >-
    Anomaly detection in two calls. The workflow reads the realtime temperature
    for a point, then retrieves the monthly climate normals for the same point,
    and branches on whether current conditions are notably warmer than the
    typical seasonal baseline. This is the building block for "is today unusual?"
    dashboards and seasonal benchmarking. 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: historicalApi
  url: ../openapi/tomorrow-io-historical-api-openapi.yml
  type: openapi
- name: realtimeApi
  url: ../openapi/tomorrow-io-realtime-api-openapi.yml
  type: openapi
workflows:
- workflowId: realtime-vs-climate-normals
  summary: Read realtime conditions and benchmark them against climate normals.
  description: >-
    Fetches current temperature for a location, retrieves long-term monthly
    climate normals for the same location, and branches on whether the present
    reading is anomalously warm.
  inputs:
    type: object
    required:
    - apikey
    - location
    properties:
      apikey:
        type: string
        description: Tomorrow.io API key passed as the apikey query parameter.
      location:
        type: string
        description: Either 'lat,lng' or a Tomorrow.io locationId.
      fields:
        type: string
        description: Comma separated climate normal fields to retrieve.
        default: temperature
      units:
        type: string
        description: Unit system for the realtime response (metric or imperial).
        default: metric
      anomalyThreshold:
        type: number
        description: Temperature delta above which the current reading is treated as anomalous.
        default: 5
  steps:
  - stepId: getRealtime
    description: >-
      Retrieve the current temperature and conditions for the target location.
    operationId: getRealtimeWeather
    parameters:
    - name: location
      in: query
      value: $inputs.location
    - name: units
      in: query
      value: $inputs.units
    - name: apikey
      in: query
      value: $inputs.apikey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      currentTemperature: $response.body#/data/values/temperature
      observedAt: $response.body#/data/time
  - stepId: getNormals
    description: >-
      Retrieve the monthly climate normals for the same location to establish a
      seasonal baseline.
    operationId: getClimateNormals
    parameters:
    - name: location
      in: query
      value: $inputs.location
    - name: fields
      in: query
      value: $inputs.fields
    - name: apikey
      in: query
      value: $inputs.apikey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      months: $response.body#/data/months
    onSuccess:
    - name: flagAnomaly
      type: end
      criteria:
      - context: $steps.getRealtime.outputs.currentTemperature
        condition: $ > $inputs.anomalyThreshold
        type: jsonpath
    - name: withinNormals
      type: end
      criteria:
      - context: $steps.getRealtime.outputs.currentTemperature
        condition: $ <= $inputs.anomalyThreshold
        type: jsonpath
  outputs:
    currentTemperature: $steps.getRealtime.outputs.currentTemperature
    climateMonths: $steps.getNormals.outputs.months

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/tomorrow-io-realtime-vs-climate-normals-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.