$59 first monthPlans

Quickstart

Send your first ChatGPT 5.5 Ultra or Codex API request after setup delivery.

Choose a package, pay, wait for manual delivery of key + base URL + setup files, then call an OpenAI-compatible endpoint.

Honest timing: keys land after checkout - usually 10 minutes to 5 hours. Snippets assume delivery is done.

Last updated: July 12, 2026. Example code uses a placeholder env var.

Before you start

Manual setup delivery begins after Stripe payment is complete.

Keep API keys in environment variables, not source code.

Use separate keys for development, staging, and production.

Plan for unlimited token consumption with 4 concurrent connections.

Review billing ownership before customer-facing rollout.

Setup path

Five steps from account to usage review.

Step 1

Choose package and create account

Compare Unlimited Weekly and Unlimited Monthly, create your workspace from the selected package, and complete Stripe payment before manual setup delivery begins.

Open

Step 2

Receive API setup

After payment, admin prepares your OpenAI-compatible API key, base URL, setup files, activation date, start date, and end date for delivery in 10 minutes to 5 hours.

Open

Step 3

Send the first request

Call the delivered unlimitedcodex base URL with a ChatGPT 5.5 Ultra model value while 5.6 variants are paused and keep the API key in an environment variable.

Open

Step 4

Check usage

Review request logs, latency, status, unlimited token usage, 4-connection pressure, and rate-limit signals before traffic grows.

Open

Step 5

Choose the next package

Use Unlimited Weekly for short access windows or Unlimited Monthly for ongoing work with a $59 first Monthly payment using reward code UNLIMITED59 when configured in Stripe.

Open

Migration

Coming from OpenAI, Azure, or OpenRouter?

Keep your SDK and request bodies. After manual setup delivery, swap the base URL and API key, then use the ChatGPT 5.5 Ultra and Codex model IDs from your setup email.

First request

Use the familiar chat completions shape.

Store the delivered key in `UCX_API_KEY`, send it as a Bearer token, and use the delivered base URL from trusted server-side code. Swap the model value between `gpt-5.5` and the ChatGPT 5.5 Ultra ID listed in your setup email depending on the workload.

ChatGPT 5.5 Ultra chat example

General reasoning, summarization, and product-facing chat flows.

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: "Summarize the onboarding checklist in three bullets."
      }
    ]
  })
});

const result = await response.json();

Codex coding example

Code generation, refactors, and agent workflows with a lower temperature default.

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: "system",
        content: "You are a precise coding assistant. Return only the code change."
      },
      {
        role: "user",
        content: "Write a TypeScript function that validates an OpenAI-compatible API key prefix."
      }
    ],
    temperature: 0.2
  })
});

const completion = await response.json();

Usage review

Open the dashboard to confirm status codes, latency, unlimited token usage, 4-connection pressure, and rate-limit signals after your first calls.

Launch guardrails

Use separate environment keys and rate-state checks before customer-facing traffic grows.

Billing next step

Move from Weekly to Monthly when access needs become ongoing, or request a walkthrough for unusual rollout needs.

Preparing for production?

Move from first request to a controlled rollout.

Review usage visibility, 4 concurrent connections, package fit, billing ownership, and security posture before customer-facing traffic grows.

Quickstart for ChatGPT 5.5 Ultra and Codex API Access | unlimitedcodex