Weather
Open-Meteo
economyOpen-Meteo is an cost-effective weather provider offering Realtime Weather, Weather Forecast, Ensemble Weather Forecast and 1 more through Aweb's unified API. It features none streaming support with premium-tier latency.
Specifications
Capabilities (4)
Quick start
Use Open-Meteo through Aweb's unified API — no provider-specific SDK needed.
cURL
curl -X POST https://api.aweb.studio/v1/execute \
-H "Authorization: Bearer $AWEB_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"provider": "open-meteo",
"capability": "weather.realtime",
"input": { "prompt": "Hello from Open-Meteo!" }
}'TypeScript
import { Aweb } from '@aweb/core';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const result = await aweb.execute({
provider: 'open-meteo',
capability: 'weather.realtime',
input: { prompt: 'Hello from Open-Meteo!' },
});
console.log(result.output);