Developer docs

Botbaba integration

Botbaba provides APIs for building and managing chatbots, including…

Updated June 2026 42 actions available

Provider
botbaba
Category
Other
Setup
User-supplied API key
Actions
42 available

Quick start

Call Botbaba from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Botbaba'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(
  "BOTBABA_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 Botbaba 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

42 actions exposed via the Botbaba integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 42 actions
  • BOTBABA_EXECUTE_BOT_ACTION_BY_USER
  • BOTBABA_GET_BOT_WIDGET_SETTINGS
  • BOTBABA_GET_BROADCAST
  • BOTBABA_GET_CONTACT
  • BOTBABA_GET_CONTACT_ANALYTICS
  • BOTBABA_GET_FILENAME
  • BOTBABA_GET_FLOW
  • BOTBABA_GET_MESSAGE
  • BOTBABA_GET_MESSAGE_ANALYTICS
  • BOTBABA_GET_TEMPLATE
  • BOTBABA_GET_WEBHOOK
  • BOTBABA_LIST_BROADCASTS
  • BOTBABA_LIST_FLOWS
  • BOTBABA_LIST_TAGS
  • BOTBABA_LIST_TEMPLATES
  • BOTBABA_LIST_WEBHOOK_EVENT_TYPES
  • BOTBABA_LIST_WEBHOOKS
  • BOTBABA_ORDER_CANCELLATION_SHOPIFY_WEBHOOK
  • BOTBABA_ORDER_FULFILLMENT_EVENT_SIMULATOR
  • BOTBABA_ORDER_FULFILLMENT_SHOPIFY_WEBHOOK
  • BOTBABA_ORDER_PAYMENT_SHOPIFY_WEBHOOK
  • BOTBABA_SEND_WHATSAPP_TEMPLATE_MESSAGES
  • BOTBABA_SHOPIFY_CHECKOUT_CREATION_EVENT_SIMULATOR
  • BOTBABA_SHOPIFY_CHECKOUT_UPDATE_EVENT_SIMULATOR
  • BOTBABA_UPDATE_CONTACT
  • BOTBABA_UPDATE_TAG
  • BOTBABA_UPDATE_TEMPLATE
  • BOTBABA_UPDATE_WEBHOOK
  • BOTBABA_WA_GUPSHUP_EVENT_SIMULATOR
  • BOTBABA_WA_GUPSHUP_MESSAGE

Build with Botbaba

Open OverSkill, describe what you want to build, and reference Botbaba in your prompt — the AI will wire up the integration automatically.