Basin integration
Basin is a no-code form backend that enables users to set up powerful, reliable…
- Provider
- basin
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 19 available
Quick start
Call Basin from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Basin'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(
"BASIN_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 Basin 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
19 actions exposed via the
Basin integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
BASIN_CREATE_FORM -
BASIN_CREATE_FORM_WEBHOOK -
BASIN_CREATE_PROJECT -
BASIN_DELETE_FORM -
BASIN_DELETE_PROJECT -
BASIN_DELETE_SUBMISSION -
BASIN_DELETE_WEBHOOK -
BASIN_GET_DOMAINS -
BASIN_GET_FORM_DETAILS -
BASIN_GET_FORMS -
BASIN_GET_FORM_WEBHOOK -
BASIN_GET_PROJECT_DETAILS
Show all 19 actions
-
BASIN_GET_PROJECTS -
BASIN_GET_SUBMISSIONS -
BASIN_GET_WEBHOOKS -
BASIN_LIST_FORM_VIEWS -
BASIN_UPDATE_FORM -
BASIN_UPDATE_PROJECT -
BASIN_UPDATE_WEBHOOK
Build with Basin
Open OverSkill, describe what you want to build, and reference Basin in your prompt — the AI will wire up the integration automatically.