Statuscake integration
StatusCake is a website monitoring platform that provides observability for…
- Provider
- statuscake
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 30 available
Quick start
Call Statuscake from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Statuscake'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(
"STATUSCAKE_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 Statuscake 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
30 actions exposed via the
Statuscake integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
STATUSCAKE_CREATE_CONTACT_GROUP -
STATUSCAKE_CREATE_HEARTBEAT_TEST -
STATUSCAKE_CREATE_PAGESPEED_TEST -
STATUSCAKE_CREATE_UPTIME_TEST -
STATUSCAKE_DELETE_CONTACT_GROUP -
STATUSCAKE_DELETE_HEARTBEAT_TEST -
STATUSCAKE_DELETE_PAGESPEED_TEST -
STATUSCAKE_DELETE_SSL_TEST -
STATUSCAKE_DELETE_TEST -
STATUSCAKE_GET_ALL_CONTACT_GROUPS -
STATUSCAKE_GET_ALL_LOCATIONS -
STATUSCAKE_GET_ALL_PAGESPEED_TESTS
Show all 30 actions
-
STATUSCAKE_GET_ALL_TESTS -
STATUSCAKE_GET_CONTACT_GROUP_DETAILS -
STATUSCAKE_GET_HEARTBEAT_CHECKS -
STATUSCAKE_GET_HEARTBEAT_TEST -
STATUSCAKE_GET_PAGESPEED_TEST -
STATUSCAKE_GET_SSL_CHECK_DETAILS -
STATUSCAKE_GET_SSL_CHECKS -
STATUSCAKE_GET_UPTIME_TEST -
STATUSCAKE_LIST_PAGESPEED_MONITORING_LOCATIONS -
STATUSCAKE_LIST_PAGESPEED_TEST_HISTORY -
STATUSCAKE_LIST_UPTIME_TEST_ALERTS -
STATUSCAKE_LIST_UPTIME_TEST_HISTORY -
STATUSCAKE_LIST_UPTIME_TEST_PERIODS -
STATUSCAKE_UPDATE_CONTACT_GROUP -
STATUSCAKE_UPDATE_HEARTBEAT_TEST -
STATUSCAKE_UPDATE_PAGESPEED_TEST -
STATUSCAKE_UPDATE_SSL_TEST -
STATUSCAKE_UPDATE_UPTIME_TEST
Build with Statuscake
Open OverSkill, describe what you want to build, and reference Statuscake in your prompt — the AI will wire up the integration automatically.