Use Chatbox AI in Third-Party Apps
Last updated
Chatbox AI provides an OpenAI-compatible API interface, allowing you to use Chatbox AI services in third-party applications that support the OpenAI API.
API Host
https://ai.chatboxai.app
API Key
Your Chatbox AI License Key
Log in to your Chatbox AI account
Go to the Dashboard page
Copy your License Key
Open Cursor settings
Find Models > OpenAI API Key configuration
Enter your API Key
In Override OpenAI Base URL, enter: https://ai.chatboxai.app/v1
Add the following configuration to ~/.continue/config.json:
Open Settings > Model Providers
Add a new provider, select OpenAI API type
Enter API address: https://ai.chatboxai.app/v1
Enter your API Key
Go to Admin Settings
Configure in Connections > OpenAI API
API Base URL: https://ai.chatboxai.app/v1
API Key: Enter your key
Most applications that support the OpenAI API can be integrated as follows:
Find the OpenAI API or custom API configuration option
Set the API Base URL to: https://ai.chatboxai.app/v1
Enter your Chatbox AI API Key (License Key)
Select the model you want to use
Based on your subscription plan, you can use the following models:
Advanced Models (Pro/Pro+ Plans)
gpt-5 - GPT 5
claude-4.5-sonnet - Claude 4.5 Sonnet
gemini-3-pro - Gemini 3 Pro
Standard Models (All Paid Plans)
deepseek-chat - DeepSeek V3
deepseek-reasoner - DeepSeek R1
deepseek-v3.2 - DeepSeek V3.2
kimi-k2 - Kimi K2
gpt-5-mini - GPT 5-mini
gemini-2.5-flash - Gemini 2.5 Flash
Note: Model names may be updated. Please refer to the official Chatbox AI website for the latest information.
Check if the API Key is correct
Confirm the API Host address is correct (note https and trailing slash)
Confirm your subscription plan is valid
Check if your subscription plan supports this model
Confirm the model name is correct
Using API integration consumes compute points from your account, just like using the Chatbox client. Please monitor your point usage.
Last updated
{
"models": [
{
"title": "Chatbox AI",
"provider": "openai",
"model": "gemini-3-pro",
"apiKey": "your-chatbox-license-key",
"apiBase": "https://ai.chatboxai.app/v1"
}
]
}