Ambee integration
Ambee provides real-time, hyperlocal environmental data through APIs, offering…
- Provider
- ambee
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 27 available
Quick start
Call Ambee from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Ambee'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(
"AMBEE_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 Ambee 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
27 actions exposed via the
Ambee integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
AMBEE_GEOCODE_BY_PLACE -
AMBEE_GET_AIR_QUALITY_BY_CITY -
AMBEE_GET_AIR_QUALITY_BY_COUNTRY_CODE -
AMBEE_GET_AIR_QUALITY_BY_LAT_LNG -
AMBEE_GET_AIR_QUALITY_BY_POSTAL_CODE -
AMBEE_GET_AIR_QUALITY_FORECAST_BY_LAT_LNG -
AMBEE_GET_AIR_QUALITY_HISTORY_BY_LAT_LNG -
AMBEE_GET_DISASTERS_BY_CONTINENT_LATEST -
AMBEE_GET_DISASTERS_HISTORY -
AMBEE_GET_DISASTERS_HISTORY_BY_COUNTRY_CODE -
AMBEE_GET_DISASTERS_HISTORY_BY_LAT_LNG -
AMBEE_GET_DISASTERS_LATEST_BY_COUNTRY_CODE
Show all 27 actions
-
AMBEE_GET_DISASTERS_LATEST_BY_LAT_LNG -
AMBEE_GET_ELEVATION_BY_LAT_LNG -
AMBEE_GET_ELEVATION_BY_PLACE -
AMBEE_GET_FIRE_RISK_BY_LAT_LNG -
AMBEE_GET_ILI_FORECAST_BY_LAT_LNG -
AMBEE_GET_POLLEN_FORECAST_BY_PLACE -
AMBEE_GET_POLLEN_HISTORY_BY_PLACE -
AMBEE_GET_POLLEN_LATEST_BY_LAT_LNG -
AMBEE_GET_POLLEN_LATEST_BY_PLACE -
AMBEE_GET_WEATHER_FORECAST_BY_LAT_LNG -
AMBEE_GET_WEATHER_LATEST_BY_LAT_LNG -
AMBEE_GET_WILDFIRE_BY_LAT_LNG -
AMBEE_GET_WILDFIRE_BY_PLACE -
AMBEE_GET_WILDFIRE_RISK_FORECAST_BY_PLACE -
AMBEE_REVERSE_GEOCODE_BY_LAT_LNG
Build with Ambee
Open OverSkill, describe what you want to build, and reference Ambee in your prompt — the AI will wire up the integration automatically.