Kaleido integration
Kaleido is a full-stack platform for building and managing enterprise…
- Provider
- kaleido
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 29 available
Quick start
Call Kaleido from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Kaleido'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(
"KALEIDO_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 Kaleido 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
29 actions exposed via the
Kaleido integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
KALEIDO_ADD_IDENTITY_PROOF -
KALEIDO_CREATE_API_KEY -
KALEIDO_DELETE_API_KEY -
KALEIDO_DELETE_ORGANIZATION_IDENTITY_PROOF -
KALEIDO_GET_API_KEY -
KALEIDO_GET_API_KEYS -
KALEIDO_GET_APPLICATION_CREDENTIALS -
KALEIDO_GET_BILLING_SUMMARY -
KALEIDO_GET_CONSORTIA -
KALEIDO_GET_EVENT_STREAMS -
KALEIDO_GET_IDENTITY_PROOF -
KALEIDO_GET_INVITATIONS
Show all 29 actions
-
KALEIDO_GET_MEMBERSHIPS -
KALEIDO_GET_ORGANIZATION -
KALEIDO_GET_ORGANIZATION_PLAN -
KALEIDO_GET_ORGANIZATIONS -
KALEIDO_GET_ORG_BILLING_PROVIDER -
KALEIDO_GET_PLANS -
KALEIDO_GET_REGIONS -
KALEIDO_GET_RELEASES -
KALEIDO_GET_ROLE_BY_ID -
KALEIDO_GET_ROLES -
KALEIDO_GET_SERVICES -
KALEIDO_GET_TOKEN_FACTORY_TOKENS -
KALEIDO_GET_WALLET_ACCOUNT_NONCE -
KALEIDO_GET_WALLETS -
KALEIDO_UPDATE_ORGANIZATION -
KALEIDO_UPDATE_ORG_ROLE -
KALEIDO_UPSERT_ORGANIZATION_ROLE
Build with Kaleido
Open OverSkill, describe what you want to build, and reference Kaleido in your prompt — the AI will wire up the integration automatically.