Baserow integration
Baserow is an open-source database tool that lets teams build no-code data…
- Provider
- baserow
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 14 available
Quick start
Call Baserow from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Baserow'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(
"BASEROW_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 Baserow 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
14 actions exposed via the
Baserow integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
BASEROW_CREATE_USER -
BASEROW_DISPATCH_BUILDER_PAGE_DATA_SOURCE -
BASEROW_DISPATCH_PUBLIC_BUILDER_PAGE_DATA_SOURCE -
BASEROW_GET_FORM_VIEW_METADATA -
BASEROW_GET_PUBLIC_BUILDER_BY_DOMAIN_NAME -
BASEROW_GET_RECORD_NAMES_BUILDER_PAGE_DATA_SOURCE -
BASEROW_GET_SETTINGS -
BASEROW_LIST_APPLICATION_USER_SOURCES -
BASEROW_LIST_AUTH_PROVIDERS_LOGIN_OPTIONS -
BASEROW_LIST_DATABASES -
BASEROW_LIST_TABLES -
BASEROW_LIST_TEMPLATES
Show all 14 actions
-
BASEROW_SEND_PASSWORD_RESET_EMAIL -
BASEROW_SEND_VERIFY_EMAIL
Build with Baserow
Open OverSkill, describe what you want to build, and reference Baserow in your prompt — the AI will wire up the integration automatically.