Updated 2026-07-24 · Technical setup guide.
Updated 2026-07-24 · Technical setup guide (not a sales post).
You will set two values in your coding tool:
https://api.earbowe.com/v1China direct alternative: https://api.3861343.xyz/v1
GET /v1/modelsexport OPENAI_BASE_URL="https://api.earbowe.com/v1"
export OPENAI_API_KEY="sk-..."
# optional default model for tools that read it
export OPENAI_MODEL="gpt-5.5"
Then start your Codex CLI / agent in the same shell.
Many tools accept a provider block like:
{
"model": "gpt-5.5",
"baseURL": "https://api.earbowe.com/v1",
"apiKey": "sk-..."
}
Field names vary (base_url, api_base, openaiBaseUrl). The important part is always:
.../v1/v1/modelscurl -sS https://api.earbowe.com/v1/models \
-H "Authorization: Bearer ***" | head
curl -sS https://api.earbowe.com/v1/chat/completions \
-H "Authorization: Bearer ***" \
-H "Content-Type: application/json" \
-d '{"model":"gpt-5.5","messages":[{"role":"user","content":"ping"}]}'
gpt-5.5 or another ID from /v1/models.https://api.3861343.xyz/v1.