OpenWeather API integration
Provides access to current weather data, forecasts, and historical weather data…
- Provider
- openweather_api
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 21 available
Quick start
Call OpenWeather API from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to OpenWeather API's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"OPENWEATHER_API_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own OpenWeather API API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
21 actions exposed via the
OpenWeather API integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
OPENWEATHER_API_DELETE_WEATHER_STATION -
OPENWEATHER_API_GET5_DAY_FORECAST -
OPENWEATHER_API_GET_AIR_POLLUTION_CURRENT -
OPENWEATHER_API_GET_AIR_POLLUTION_FORECAST -
OPENWEATHER_API_GET_AIR_POLLUTION_HISTORY -
OPENWEATHER_API_GET_CIRCLE_CITY_WEATHER -
OPENWEATHER_API_GET_CURRENT_WEATHER -
OPENWEATHER_API_GET_GEOCODING_BY_ZIP -
OPENWEATHER_API_GET_GEOCODING_DIRECT -
OPENWEATHER_API_GET_GEOCODING_REVERSE -
OPENWEATHER_API_GET_STATION_MEASUREMENTS -
OPENWEATHER_API_GET_UV_INDEX
Show all 21 actions
-
OPENWEATHER_API_GET_UV_INDEX_FORECAST -
OPENWEATHER_API_GET_UV_INDEX_HISTORY -
OPENWEATHER_API_GET_WEATHER_MAP_TILE -
OPENWEATHER_API_GET_WEATHER_STATION -
OPENWEATHER_API_GET_WEATHER_STATIONS -
OPENWEATHER_API_GET_WEATHER_TRIGGERS -
OPENWEATHER_API_POST_ADD_WEATHER_STATION -
OPENWEATHER_API_POST_SUBMIT_STATION_MEASUREMENTS -
OPENWEATHER_API_UPDATE_WEATHER_STATION
Build with OpenWeather API
Open OverSkill, describe what you want to build, and reference OpenWeather API in your prompt — the AI will wire up the integration automatically.