weather

Weather

Ensemble Weather Forecast

Ensemble Weather Forecast is a weather capability available through Open-Meteo on Aweb. Multi-member ensemble weather forecasts for uncertainty quantification. Access it through a single unified API with automatic failover and intelligent routing.

Try Ensemble Weather ForecastAPI docs

Best for

Highest quality

Open-Meteo

Premium tier

Most affordable

Open-Meteo

Economy tier

Contract

Max Latency3000ms

Providers (1)

ProviderScoreQualityPricing
Open-MeteoDEFAULT
98premiumeconomy

Quick start

Call Ensemble Weather Forecast through Aweb — automatic provider selection, failover, and load balancing included.

cURL

curl -X POST https://api.aweb.studio/v1/execute \
  -H "Authorization: Bearer $AWEB_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "capability": "weather.ensemble",
    "input": { "prompt": "Hello world" }
  }'

TypeScript

import { Aweb } from '@aweb/core';

const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });

// Aweb automatically selects the best provider
const result = await aweb.execute({
  capability: 'weather.ensemble',
  input: { prompt: 'Hello world' },
});

console.log(result.output);

Orchestration pipeline

import { Aweb } from '@aweb/core';

const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });

// Multi-step pipeline with automatic failover
const result = await aweb.orchestrate({
  steps: [
    { id: 'step1', capability: 'weather.ensemble', input: { prompt: 'Hello world' } },
    { id: 'step2', capability: 'llm.chat', dependsOn: ['step1'],
      input: { prompt: 'Summarize: $step1.output' } },
  ],
});

Related Weather capabilities

Realtime Weather

weather

Weather Forecast

weather

Weather Alerts

weather

Historical Weather

weather

Getting started →API reference →All providers →All capabilities →