Splitwise integration
Splitwise helps you split bills and expenses with friends and family.
- Provider
- splitwise
- Category
- Other
- Setup
- One-click OAuth (we host the OAuth app)
- Actions
- 27 available
Quick start
Call Splitwise from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Splitwise'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(
"SPLITWISE_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
OverSkill hosts the OAuth application for Splitwise. End-users click Connect on the integration card in your app, complete the OAuth flow with Splitwise, and OverSkill stores the access token scoped to their account. No client_id / client_secret configuration needed on your side.
Supported auth schemes: OAUTH2, API_KEY.
Available actions
27 actions exposed via the
Splitwise integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
SPLITWISE_ADD_FRIEND -
SPLITWISE_ADD_USER_TO_GROUP -
SPLITWISE_CREATE_COMMENT -
SPLITWISE_CREATE_EXPENSE -
SPLITWISE_CREATE_FRIENDS -
SPLITWISE_CREATE_GROUP -
SPLITWISE_DELETE_COMMENT -
SPLITWISE_DELETE_EXPENSE -
SPLITWISE_DELETE_FRIEND -
SPLITWISE_DELETE_GROUP -
SPLITWISE_GET_CATEGORIES -
SPLITWISE_GET_COMMENTS
Show all 27 actions
-
SPLITWISE_GET_CURRENCIES -
SPLITWISE_GET_CURRENT_USER -
SPLITWISE_GET_EXPENSE -
SPLITWISE_GET_EXPENSES -
SPLITWISE_GET_FRIEND -
SPLITWISE_GET_FRIENDS -
SPLITWISE_GET_GROUP -
SPLITWISE_GET_GROUPS -
SPLITWISE_GET_NOTIFICATIONS -
SPLITWISE_GET_USER -
SPLITWISE_REMOVE_USER_FROM_GROUP -
SPLITWISE_UNDELETE_EXPENSE -
SPLITWISE_UNDELETE_GROUP -
SPLITWISE_UPDATE_EXPENSE -
SPLITWISE_UPDATE_USER
Build with Splitwise
Open OverSkill, describe what you want to build, and reference Splitwise in your prompt — the AI will wire up the integration automatically.