Weather

Tomorrow.io

standard

Tomorrow.io is an reliable weather provider offering Realtime Weather, Weather Forecast, Weather Alerts through Aweb's unified API. It features none streaming support with premium-tier latency.

Try Tomorrow.ioOfficial docs

Specifications

CategoryWeather
Auth Typeapi_key
Latency Tierpremium
Streamingnone
Pricing Tierstandard
Reliabilitypremium
Qualitypremium
Base URLhttps://api.tomorrow.io/v4
SDK Package

Capabilities (3)

Realtime Weatherweather.realtime
Score: 95DEFAULT
Weather Forecastweather.forecast
Score: 95DEFAULT
Weather Alertsweather.alerts
Score: 90DEFAULT

Quick start

Use Tomorrow.io through Alfred's unified API — no provider-specific SDK needed.

cURL

curl -X POST https://api.alfred-ai.app/v1/execute \
  -H "Authorization: Bearer $ALFRED_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "provider": "tomorrow",
    "capability": "weather.realtime",
    "input": { "prompt": "Hello from Tomorrow.io!" }
  }'

TypeScript

import { Alfred } from '@alfred/core';

const alfred = new Alfred({ apiKey: process.env.ALFRED_API_KEY });

const result = await alfred.execute({
  provider: 'tomorrow',
  capability: 'weather.realtime',
  input: { prompt: 'Hello from Tomorrow.io!' },
});

console.log(result.output);
Getting started →API reference →All capabilities →All providers →