Use gpt88.cc in ChatBox
A complete ChatBox setup guide for gpt88.cc: provider selection, base URL, model choice, connection checks, and troubleshooting.
The goal here is not just to mention a config field. It is to take ChatBox from a blank setup to a working state: API key, base URL, model ID, then one verification round.
Preparation
Confirm these items before you start:
1. Install the ChatBox desktop app
2. Create a gpt88.cc API key
3. Confirm the exact model ID you want to use
4. Know whether your client is using OpenAI-style or Claude-style settings
5. Prepare one minimal test prompt| Requirement | Recommended setting | Why it matters |
|---|---|---|
| ChatBox desktop app | Use the latest stable release | Newer versions usually handle custom API hosts and model settings more cleanly. |
| API key | Create a dedicated key in the gpt88.cc console | This makes revocation, budgeting, and usage tracing easier per project. |
| Model ID | Start with a stable model such as gpt-5-2-chat-latest or claude-haiku-4-5-20251001 | First validate connectivity, then move to stronger or more expensive models. |
| Base URL | For OpenAI style, use https://api.gpt88.cc | This is the most universal and lowest-friction path in ChatBox. |
Step 1: Open ChatBox and enter settings
On first launch, ChatBox usually shows a setup wizard. If it has already been configured, reopen the settings panel. The immediate target is simple: set the provider and the API host correctly.
- Launch ChatBox.
- If this is the first run, enter the setup wizard or create a new chat.
- If it is already configured, open settings from the lower-left corner.
- Find the AI Provider or model provider section.
Step 2: Configure gpt88.cc
2.1 Choose the provider type
For gpt88.cc, the most common option is OpenAI API. If your ChatBox build also exposes a Claude API option and you specifically want Claude-family models, you can switch to that route.
2.2 Fill in API settings
Recommended first pass: OpenAI-compatible settings.
Provider: OpenAI API
API Key: sk-your-gpt88-api-key
API Host / API Domain: https://api.gpt88.cc
Model: claude-haiku-4-5-20251001 or gpt-5-2-chat-latestIf you intentionally want the Claude-style route, use this instead:
If your ChatBox build exposes a Claude API option:
Provider: Claude API
API Key: sk-your-gpt88-api-key
API Host / API Domain: https://api.gpt88.cc
Model: claude-sonnet-4-6 or claude-haiku-4-5-20251001The two most common mistakes are the host shape and the exact model name:
| Field | OpenAI style | Claude style |
|---|---|---|
| API Key | Use the key generated in gpt88.cc | Use the same gpt88.cc key |
| API Host / Domain | https://api.gpt88.cc | https://api.gpt88.cc |
| Model | gpt-5-2-chat-latest / gpt-4o-mini | claude-sonnet-4-6 / claude-haiku-4-5-20251001 |
2.3 Select the model
After the host is set, the next critical step is the model ID. ChatBox supports manual entry, and direct pasting is often faster than waiting for a model list to refresh.
| Use case | Recommended model | Why |
|---|---|---|
| Quick validation | gpt-4o-mini / claude-haiku-4-5-20251001 | Fast response, ideal for first-run connectivity checks. |
| General chat | gpt-5-2-chat-latest / claude-sonnet-4-6 | Good default choice for summarization, writing, and daily conversation. |
| Long-context tasks | claude-sonnet-4-6 | Better fit for long documents and more complex reasoning flows. |
Step 3: Run the first test
After saving the config, go back to the main screen and send one minimal request. Confirm a normal response first, then tune temperature, output length, or switch models.
export GPT88_API_KEY="sk-your-gpt88-api-key"
curl https://api.gpt88.cc/v1/chat/completions \
-H "Authorization: Bearer $GPT88_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5-2-chat-latest",
"messages": [
{"role": "user", "content": "Introduce gpt88.cc in one sentence."}
]
}'- Create a new chat.
- Send a simple request such as “Introduce gpt88.cc in one sentence.”
- Confirm that the response returns normally.
- Only after that should you move to larger prompts or different models.
Advanced notes
| Parameter | Effect | Practical starting point |
|---|---|---|
| Temperature | Controls randomness | 0.7 for creative tasks, 0.3 for precise answers |
| Max Tokens | Caps output length | Start around 2000-4000 |
| Top P | Controls sampling breadth | Default 0.9 is usually fine |
Common questions
- Can I use Claude-family models in ChatBox? Yes, as long as you use the correct host style and the exact model ID.
- Do I need the model list dropdown? No. Manual model ID entry is often the fastest route.
- Should I start with the strongest model? No. Start with a cheaper stable model so you can separate config issues from model behavior.
Usage tips
- Keep one dedicated ChatBox profile for gpt88.cc instead of mixing providers in one config.
- Copy real model IDs directly from the model catalog to avoid hidden typos.
- When troubleshooting, verify with curl first, then come back to the UI client.
Troubleshooting checklist
1. Cannot connect
- Make sure the Base URL is https://api.gpt88.cc
- Make sure the API key is complete
- Verify with curl before going back to ChatBox
2. Model list is empty
- Enter the model ID manually
- Copy the real model name from /v1/models or the model catalog
3. 401 response
- The key is invalid, expired, or lacks permission
4. 404 response
- Usually the Base URL or model name is wrong
5. Slow responses
- First test with a lighter model to separate config problems from model latency