Uptimerobot integration
UptimeRobot is a service that monitors the uptime and performance of websites,…
- Provider
- uptimerobot
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 15 available
Quick start
Call Uptimerobot from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Uptimerobot'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(
"UPTIMEROBOT_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 Uptimerobot 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
15 actions exposed via the
Uptimerobot integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
UPTIMEROBOT_ADD_MONITOR -
UPTIMEROBOT_DELETE_MONITOR -
UPTIMEROBOT_EDIT_MAINTENANCE_WINDOW -
UPTIMEROBOT_EDIT_MONITOR -
UPTIMEROBOT_EDIT_PUBLIC_STATUS_PAGE -
UPTIMEROBOT_GET_ACCOUNT_DETAILS -
UPTIMEROBOT_GET_ALERT_CONTACTS -
UPTIMEROBOT_GET_MAINTENANCE_WINDOW -
UPTIMEROBOT_GET_MAINTENANCE_WINDOWS -
UPTIMEROBOT_GET_MONITORS -
UPTIMEROBOT_GET_PUBLIC_STATUS_PAGES -
UPTIMEROBOT_LIST_INTEGRATIONS
Show all 15 actions
-
UPTIMEROBOT_LIST_PSPS -
UPTIMEROBOT_NEW_MAINTENANCE_WINDOW -
UPTIMEROBOT_NEW_PUBLIC_STATUS_PAGE
Build with Uptimerobot
Open OverSkill, describe what you want to build, and reference Uptimerobot in your prompt — the AI will wire up the integration automatically.