Apilio integration
Apilio is a home automation platform that enables users to connect and control…
- Provider
- apilio
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 8 available
Quick start
Call Apilio from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Apilio'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(
"APILIO_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 Apilio 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
8 actions exposed via the
Apilio integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
APILIO_GET_BOOLEAN_VARIABLES -
APILIO_GET_CONDITIONS -
APILIO_GET_LOGICBLOCKS -
APILIO_GET_NUMERIC_VARIABLES -
APILIO_GET_STRING_VARIABLES -
APILIO_LIST_TIME_CONDITIONS -
APILIO_LIST_TUYA_CONDITIONS -
APILIO_LIST_VARIABLE_CONDITIONS
Build with Apilio
Open OverSkill, describe what you want to build, and reference Apilio in your prompt — the AI will wire up the integration automatically.