Confirm custom base URL support
Before paying for any provider, make sure your Codex IDE, Codex CLI, SDK, or agent client can use a custom OpenAI-compatible base URL instead of a fixed first-party endpoint.
Codex custom base URL guide
This guide shows what to verify before checkout and how to smoke-test the paid setup before a long Codex IDE, Codex CLI, SDK, or agent run.
Last updated: July 23, 2026. unlimitedcodex is independent and not affiliated with OpenAI.
Direct answer
A useful provider test proves five things: the client can override the base URL, the API key authenticates, /v1/models returns expected model IDs, one small chat/completions request works, and required endpoints such as embeddings or image generation via API are checked separately.
| Base URL | https://unlimitedcodex.com/v1 Use the delivered OpenAI-compatible base URL after paid checkout. |
|---|---|
| API key | UCX_API_KEY or client-specific secret Keep the full key in environment variables. Do not paste it into public clients or support threads. |
| Model ID | DELIVERED_MODEL_ID Use the exact ID from the setup email and authenticated GET /v1/models. |
| Concurrency | 4 concurrent connections Plan agent workers, retries, and background jobs around this package limit. |
| Pre-buy verification | /pricing and this guide Review model mapping, limits, and delivery before paid checkout. |
Verification flow
Review compatibility before checkout. After paid delivery, prove endpoint shape, auth, model IDs, and client routing before a long production workload.
Before paying for any provider, make sure your Codex IDE, Codex CLI, SDK, or agent client can use a custom OpenAI-compatible base URL instead of a fixed first-party endpoint.
Before checkout, review the package-to-model mapping, setup guide, delivery window, and 4-connection boundary. Do not send private keys, auth headers, private logs, or secrets.
Run authenticated GET /v1/models or the equivalent model-list command. Confirm the exact delivered model ID before a long agent run.
Run one minimal chat/completions request with a harmless prompt. This proves authentication, JSON shape, model ID, routing, and response format before larger work begins.
If your app needs embeddings or image generation via API where supported, test those endpoints independently. Do not assume chat success proves every endpoint is available.
After checkout and manual delivery, store the delivered API key and base URL in environment variables, keep secrets out of source control, and plan around 4 concurrent connections.
Smoke tests
Use harmless inputs first. If these fail, do not start a long repo edit, migration, or agent loop until the route, key, and model ID are fixed.
curl "https://unlimitedcodex.com/v1/models" \ -H "Authorization: Bearer $UCX_API_KEY"
# Replace DELIVERED_MODEL_ID using the setup email and authenticated GET /v1/models.
curl "https://unlimitedcodex.com/v1/chat/completions" \
-H "Authorization: Bearer $UCX_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "DELIVERED_MODEL_ID",
"messages": [
{
"role": "user",
"content": "Reply with one short sentence."
}
]
}'UCX_API_KEY="ucx_live_..." OPENAI_API_KEY="$UCX_API_KEY" OPENAI_BASE_URL="https://unlimitedcodex.com/v1"
FAQ
Use this guide only for clients or workflows that support a custom OpenAI-compatible base URL and Bearer API key. Before paying, verify your exact Codex IDE, Codex CLI, SDK, or agent client can route requests to a custom provider.
Verify that your client supports a custom base URL, review the exact package-to-model mapping, and confirm that a 4 concurrent connection limit fits your workload. Authenticated endpoint checks begin after paid delivery.
No. unlimitedcodex uses manual setup delivery after paid checkout, usually 10 minutes to 5 hours. Public docs and support answer compatibility questions before payment.
No. unlimitedcodex is an independent OpenAI-compatible GPT-5.6 Sol and Codex API access provider and is not affiliated with OpenAI.
Next step
unlimitedcodex XHigh packages are $19/week, or an eligible $59 first month followed by $69/month. Sol Weekly is $69 for an eligible first week then $89/week; Sol Monthly is $179 for an eligible first month then $199/month. Packages include unlimited token consumption, 4 concurrent connections, and manual setup delivery in 10 minutes to 5 hours after checkout.