Manual Configuration
Manual Configuration — QuickAPI_快快API网络商店
For environments where CC-Switch / Codex++ cannot be installed. Directly edit each tool's configuration file to integrate.
Universal Configuration Parameters
These parameters are the same for all tools:
| Parameter | Value | Description |
|---|---|---|
| API Base URL | https://api.quickapi.store/v1 | Default access address |
| API Key | Your API Key | Get from console |
| Model Name | See Model Plaza | Real-time model list |
TUI vs APP Version
Some AI coding tools offer two versions with slightly different configuration:
| Version | Description | Installation | Use Case |
|---|---|---|---|
| TUI Version | Terminal UI, runs in command line | Install via npm/pip or download binary | Servers, WSL, remote development |
| APP Version | Desktop application with GUI | Download installer from official website | Local desktop environment |
💡 Recommendation
If you're on a server or remote environment, use TUI version. For local desktop use, APP version offers better experience.
Codex Manual Configuration
TUI Version
Method 1: Environment Variables
# Linux / macOS
export OPENAI_BASE_URL="https://api.quickapi.store/v1"
export OPENAI_API_KEY="YOUR_API_KEY"
# Windows PowerShell
$env:OPENAI_BASE_URL="https://api.quickapi.store/v1"
$env:OPENAI_API_KEY="YOUR_API_KEY"Method 2: Config File
Add to ~/.codex/config.toml:
[api]
base_url = "https://api.quickapi.store/v1"
key = "YOUR_API_KEY"APP Version
Download from OpenAI official website, then configure in settings:
- Open Codex APP, go to Settings
- Find API Configuration or Custom Endpoint
- Enter:
- API Base URL:
https://api.quickapi.store/v1 - API Key:
YOUR_API_KEY
- API Base URL:
- Save and restart
Claude Code Manual Configuration
TUI Version
Environment Variables
# Linux / macOS
export ANTHROPIC_BASE_URL="https://api.quickapi.store/v1"
export ANTHROPIC_API_KEY="YOUR_API_KEY"
# Windows PowerShell
$env:ANTHROPIC_BASE_URL="https://api.quickapi.store/v1"
$env:ANTHROPIC_API_KEY="YOUR_API_KEY"Config File
Add to ~/.claude/config.json:
{
"apiUrl": "https://api.quickapi.store/v1",
"apiKey": "YOUR_API_KEY"
}APP Version
Download from Anthropic official website, then configure in settings:
- Open Claude Code APP, go to Settings
- Find API Configuration or Custom Endpoint
- Enter:
- API Base URL:
https://api.quickapi.store/v1 - API Key:
YOUR_API_KEY
- API Base URL:
- Save and restart
VSCode Extensions Manual Configuration
Continue
Add to VSCode settings (settings.json):
{
"continue.openAiUrl": "https://api.quickapi.store/v1",
"continue.apiKey": "YOUR_API_KEY",
"continue.model": "gpt-4o-mini"
}Codium
Add to VSCode settings:
{
"codium.apiBaseUrl": "https://api.quickapi.store/v1",
"codium.apiKey": "YOUR_API_KEY"
}Roocode
Add to VSCode settings:
{
"roocode.apiBaseUrl": "https://api.quickapi.store/v1",
"roocode.apiKey": "YOUR_API_KEY",
"roocode.model": "gpt-4o-mini"
}VSCode Copilot (OpenAI Compatible Extension)
{
"copilot.openai.apiBaseUrl": "https://api.quickapi.store/v1",
"copilot.openai.apiKey": "YOUR_API_KEY",
"copilot.openai.model": "gpt-4o-mini"
}Hermes Manual Configuration
Environment Variables
export OPENAI_BASE_URL="https://api.quickapi.store/v1"
export OPENAI_API_KEY="YOUR_API_KEY"Config File
Create or edit config.json in Hermes config directory:
{
"api_base": "https://api.quickapi.store/v1",
"api_key": "YOUR_API_KEY",
"model": "gpt-4o-mini"
}OpenClaw Manual Configuration
Environment Variables
export OPENAI_BASE_URL="https://api.quickapi.store/v1"
export OPENAI_API_KEY="YOUR_API_KEY"Config File
Edit in OpenClaw config directory:
{
"api": {
"base_url": "https://api.quickapi.store/v1",
"api_key": "YOUR_API_KEY"
}
}OpenCode Manual Configuration
TUI Version
Environment Variables
# Linux / macOS
export OPENAI_BASE_URL="https://api.quickapi.store/v1"
export OPENAI_API_KEY="YOUR_API_KEY"
# Windows PowerShell
$env:OPENAI_BASE_URL="https://api.quickapi.store/v1"
$env:OPENAI_API_KEY="YOUR_API_KEY"Config File
Add to OpenCode config file:
{
"api_base": "https://api.quickapi.store/v1",
"api_key": "YOUR_API_KEY",
"model": "gpt-4o-mini"
}APP Version
Download from official website, then configure in settings:
- Open OpenCode APP, go to Settings
- Find API Configuration or Custom Endpoint
- Enter:
- API Base URL:
https://api.quickapi.store/v1 - API Key:
YOUR_API_KEY
- API Base URL:
- Save and restart
MimoCode Manual Configuration
Environment Variables
# Linux / macOS
export OPENAI_BASE_URL="https://api.quickapi.store/v1"
export OPENAI_API_KEY="YOUR_API_KEY"
# Windows PowerShell
$env:OPENAI_BASE_URL="https://api.quickapi.store/v1"
$env:OPENAI_API_KEY="YOUR_API_KEY"Config File
Add to MimoCode config file:
{
"api_base": "https://api.quickapi.store/v1",
"api_key": "YOUR_API_KEY",
"model": "gpt-4o-mini"
}Access Node Selection
Choose the optimal node based on your network:
| Access Method | Base URL | Best For |
|---|---|---|
| Beijing Tencent Cloud → Alibaba Cloud ESA | https://api-bj.quickapi.store/v1 | North China |
| Direct to Alibaba Cloud ESA | https://api.quickapi.store/v1 | Default, nationwide |
| Hong Kong Cloudflare Tunnel | https://quickapi.lz-0315.com/v1 | Overseas |
| IX Direct Link | https://api-bj.lz-0315.com/v1 | Equivalent to direct connection to Beijing Tencent Cloud |
Verify Configuration
After configuration, verify with:
curl Test
curl https://api.quickapi.store/v1/models \
-H "Authorization: Bearer YOUR_API_KEY"If a model list is returned, configuration is successful.
Python Test
from openai import OpenAI
client = OpenAI(
base_url="https://api.quickapi.store/v1",
api_key="YOUR_API_KEY"
)
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[{"role": "user", "content": "Hello"}]
)
print(response.choices[0].message.content)FAQ
Q: What if I cannot connect after configuration?
A: Please check:
- Is the API Key correct?
- Is the Base URL complete (including
/v1)? - Is the network working? Try switching access nodes.
Q: How do I switch models?
A: Change the model name in the tool settings. Visit Model Plaza for supported models.
Q: Can multiple tools share one API Key?
A: Yes, all tools share the same API Key and quota.
Q: Which has higher priority, environment variables or config files?
A: Typically environment variables have higher priority than config files, depending on the tool's implementation.
Q: What's the difference between TUI and APP version configuration?
A: TUI version uses environment variables or config files. APP version uses the graphical settings page. The end result is the same.
Q: I'm a GNU/Linux user and can't install CC-Switch. What do I do?
A: Please follow this manual configuration guide. TUI tools (like Codex TUI, Claude Code TUI) run well on GNU/Linux and can be configured via environment variables.

