$59 first monthPlans

Docs

OpenAI-Compatible ChatGPT 5.5 Ultra and Codex API Docs

Last updated: July 12, 2026

Use the API key, base URL, and setup files delivered 10 minutes to 5 hours after payment.

Authenticate server-side, call ChatGPT 5.5 Ultra endpoints while 5.6 variants are paused, understand unlimited tokens with 4 concurrent connections, and prepare webhook receivers for billing or key lifecycle events.

Before code: Checkout, then manual setup (10 min-5 hr), then key by email + base URL. The snippets below work after delivery.

1

Choose a package

Sign up, choose Unlimited Weekly or Unlimited Monthly, complete payment, and open the dashboard.

2

Wait for delivery

Setup is prepared manually after payment and delivered in 10 minutes to 5 hours with your API key, base URL, setup files, and access dates.

3

Send a request

Use the delivered OpenAI-compatible base URL to call ChatGPT 5.5 Ultra or Codex model values from server-side code.

4

Review usage

Watch request logs, token usage, 4-connection pressure, rate-limit signals, latency, and package dates.

Migrating from OpenAI, Azure, or OpenRouter?

Keep your OpenAI-compatible request shapes. Change the base URL and API key after manual setup delivery, then map model IDs to the ChatGPT 5.5 Ultra and Codex values included in your setup email.

First request

const response = await fetch("https://unlimitedcodex.com/v1/chat/completions", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${process.env.UCX_API_KEY}`,
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    model: "gpt-5.5",
    messages: [{ role: "user", content: "Write a release note for our AI feature." }]
  })
});

Getting Started

Create a workspace, choose Unlimited Weekly or Unlimited Monthly, complete payment, then use the manually delivered API key, base URL, and setup files.

Related guide

Authentication

Send scoped keys as Bearer tokens, keep credentials server-side, and rotate without exposing production access.

Related guide

Chat Completions

Send ChatGPT 5.5 Ultra and Codex chat requests through familiar OpenAI-compatible payloads, response objects, and safe retry paths.

Related guide

Embeddings

Call embedding request shapes with OpenAI-compatible vectors, safe batching, and usage tracking through the delivered setup.

Related guide

Image Requests

Call image request shapes with safe prompts, predictable response formats, and image usage planning through the delivered setup.

Related guide

Rate Limits

Understand unlimited token consumption, 4 concurrent connections, usage signals, 429s, and package changes before traffic spikes.

Related guide

Errors

Map status codes, error codes, retries, and redacted support context before failures reach users.

Related guide

Webhooks

Configure customer webhook endpoint records, select event types, store signing secrets, and prepare retry-safe receivers.

Related guide

SDK Notes

Use standard fetch, existing OpenAI-compatible client patterns, or your own API wrapper. The important pieces are the base URL and Bearer token.

Related guide

Production checklist

Use separate keys for development, staging, and production.
Document the delivered model values and package dates before high-volume usage begins.
Review unlimited token consumption, 4 concurrent connections, warning, urgent, and blocked states before high-volume traffic begins.
Register webhook endpoint records for billing and API key lifecycle receiver workflows.
OpenAI-Compatible ChatGPT 5.5 Ultra and Codex API Docs | unlimitedcodex