Developer docs

DocsBot AI integration

DocsBot AI enables the creation of custom chatbots trained on your…

Updated June 2026 38 actions available

Provider
docsbot_ai
Category
Other
Setup
User-supplied API key
Actions
38 available

Quick start

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

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

Show all 38 actions
  • DOCSBOT_AI_GET_BOT_REPORTS
  • DOCSBOT_AI_GET_BOT_STATS
  • DOCSBOT_AI_GET_SOURCE
  • DOCSBOT_AI_GET_TEAM
  • DOCSBOT_AI_GET_UPLOAD_URL
  • DOCSBOT_AI_GET_WEBHOOK
  • DOCSBOT_AI_LIST_BOTS
  • DOCSBOT_AI_LIST_CONVERSATIONS
  • DOCSBOT_AI_LIST_LEADS
  • DOCSBOT_AI_LIST_QUESTIONS
  • DOCSBOT_AI_LIST_RESEARCH_JOBS
  • DOCSBOT_AI_LIST_SOURCES
  • DOCSBOT_AI_LIST_TEAM_MEMBERS
  • DOCSBOT_AI_LIST_TEAMS
  • DOCSBOT_AI_LIST_WEBHOOKS
  • DOCSBOT_AI_RATE_ANSWER
  • DOCSBOT_AI_REFRESH_SOURCE
  • DOCSBOT_AI_SEARCH_SEMANTIC
  • DOCSBOT_AI_TEST_ESCALATED_WEBHOOK
  • DOCSBOT_AI_TEST_LEAD_WEBHOOK
  • DOCSBOT_AI_TEST_RESEARCH_WEBHOOK
  • DOCSBOT_AI_TRIGGER_RATED_WEBHOOK_TEST
  • DOCSBOT_AI_UPDATE_BOT
  • DOCSBOT_AI_UPDATE_TEAM
  • DOCSBOT_AI_UPDATE_WEBHOOK
  • DOCSBOT_AI_UPLOAD_FILE_TO_CLOUD_STORAGE

Build with DocsBot AI

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