BotConnector
Sign in Workspace Open App

Developer Integrations

Beta

BotConnector Cloud provides a Hosted Developer API fully compatible with OpenAI standards (/v1/chat/completions and /v1/models). You can connect third-party developer clients—including Cline, Roo Code, OpenCode, Aider, Continue, and Cursor—directly to BotConnector.

---

1. Universal Cloud Configuration

For any tool that supports custom OpenAI-compatible endpoints:

SettingValueNotes
Base URLhttps://api.botconnector.id/v1Universal across all integrations
API Keybc_live_...Created at Workspace → API Keys
Model ID(Auto-populated)Canonical BotConnector Model ID (see auto-update guide below)

---

2. Auto-Update Models (Zero Manual Input)

You never need to manually type each Model ID into individual files or configuration boxes. BotConnector provides automated model discovery:

A. For GUI-Based Tools (Cline, Roo Code, etc.)

  • 1-Click Dropdown Auto-Discovery:
  1. Set Base URL to https://api.botconnector.id/v1 and paste your API Key in the extension settings.
  2. Click the Refresh / Reload button (``) next to the Model ID field.
  3. Cline/Roo Code queries GET /v1/models and instantly loads the entire active catalog into the dropdown selector.
  4. See detailed instructions at Cline & Roo Code Integration Guide.

B. For Terminal / CLI Tools (OpenCode)

  • 1-Line CLI Auto-Sync Command:

OpenCode configures providers via opencode.json. Instead of manually maintaining long JSON lists, run this single command in your project root: ``bash curl -s https://api.botconnector.id/v1/integrations | jq '{ "$schema": "https://opencode.ai/config.json", "provider": { "botconnector": { "npm": "@ai-sdk/openai-compatible", "name": "BotConnector", "options": { "baseURL": .base_url, "apiKey": "{env:BOTCONNECTOR_API_KEY}" }, "models": (.models | map({key: ., value: {name: .}}) | from_entries) } } }' > opencode.json ` This immediately creates a complete opencode.json` containing all active models. Re-run this anytime BotConnector releases new models to refresh your configuration in seconds.

  1. See detailed instructions at OpenCode Integration Guide.

C. For Aider, Scripts & Custom Agents

  • Query the active canonical Model IDs anytime directly from your terminal:

``bash curl -s https://api.botconnector.id/v1/models | jq -r '.data[].id' ``

  • Example setup in Aider:

``bash export AIDER_OPENAI_API_BASE="https://api.botconnector.id/v1" export AIDER_OPENAI_API_KEY="bc_live_your_key_here" aider --model openai/agnes-3.0-flash ``

---

3. Currently Active Models

The following models are active and available immediately upon connecting:

  • Flagship Reasoning & Coding: agnes-3.0-flash, ling-3.0-flash, glm-5.3-flash, deepseek-v4-flash
  • Fast / Lightweight Inference: mistral-medium-3.5-free, mistral-nemo, mimo-v2.5
  • Specialized Architectures: nemotron-3-nano-30b-a3b, tencent-hy3, stealth/space-bunny-alpha

---

4. Application Guides