Developer Integrations
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:
| Setting | Value | Notes |
|---|---|---|
| Base URL | https://api.botconnector.id/v1 | Universal across all integrations |
| API Key | bc_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:
- Set Base URL to
https://api.botconnector.id/v1and paste your API Key in the extension settings. - Click the Refresh / Reload button (``) next to the Model ID field.
- Cline/Roo Code queries
GET /v1/modelsand instantly loads the entire active catalog into the dropdown selector. - 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.
- 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
---