Skip to main content
Welcome to betarouter. This guide will help you quickly connect to various AI coding tools.

Basic Information

FieldValue
API Base URLhttps://betarouter.com/v1
API KeyObtain from the console, format: sk-xxxxxxxxxxxx
Supported ProtocolsOpenAI API compatible / Anthropic API compatible
Supported ModelsGPT-5.5, Claude Opus 4.8, Gemini 3.5 Flash and etc.
Note Any tool that supports the OpenAI API format can connect to this relay by updating the Base URL and API Key.

Get an API Key

  1. Visit the betarouter Console
  2. Register / Log in
  3. Go to the API Key Management page
  4. Click Create API Key and copy the generated key
Warning Keep your API Key safe. Do not expose it in public repositories or share it with others.

Verify Connection

Use the following code to quickly verify the relay is working:
curl --location 'https://betarouter.com/v1/chat/completions' \
--header 'Authorization: Bearer sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' \
--header 'Content-Type: application/json' \
--data '{
    "model": "deepseek-chat",
    "messages": [
        {
            "role": "user",
            "content": "What model are you?"
        }
    ]
  }'
If you receive a valid JSON response, the connection is working correctly.

Supported Tools

ToolTypeRating
CursorAI Code Editor⭐⭐⭐⭐⭐
Claude CodeCLI AI Coding Assistant⭐⭐⭐⭐⭐
ClineVS Code Extension⭐⭐⭐⭐
ContinueVS Code / JetBrains Extension⭐⭐⭐⭐
AiderTerminal AI Coding Tool⭐⭐⭐⭐
ChatBoxCross-platform Chat Client⭐⭐⭐
OpenAI APIDirect SDK Usage⭐⭐⭐⭐⭐
Gemini APIGemini Native REST⭐⭐⭐⭐
WindsurfAI Code Editor⭐⭐⭐⭐
Cherry StudioDesktop AI Client⭐⭐⭐
Choose your tool and follow the corresponding configuration guide.