Unlock exclusive introductory pricing for the newly launched Gemini 3.5 Flash.
O

GPT 5.5 Pro

Input:$24/M
Output:$144/M
Released:Apr 24, 2026

OpenAI's most capable model, engineered for the hardest tasks and long-running agentic workflows. GPT-5.5 Pro excels at complex coding, computer use, deep research, data analysis, and scientific reasoning โ€” delivering frontier-level intelligence at GPT-5.4 latency with greater token efficiency. Ideal for enterprise and professional use cases demanding the highest standard of accuracy and autonomous task execution.

New
Popular
Commercial Use

Playground for GPT 5.5 Pro

Explore GPT 5.5 Pro's Playground โ€” an interactive environment to test models, run queries in real time. Try prompts, adjust parameters, and iterate instantly to accelerate development and validate use cases.

Technical Specifications of GPT-5.5 Pro

SpecificationGPT-5.5 Pro
Model familyGPT-5.5 Pro (high-compute reasoning variant)
Primary modalityText + image input, text output
Context window1,050,000 tokens
Max output128,000 tokens
Knowledge cutoffDec. 1, 2025
Reasoning profileHigh-compute reasoning optimized
API accessResponses API
Tool supportFunction calling, web search, file search, code interpreter, hosted shell, MCP
StreamingNot supported
Snapshotgpt-5.5-pro-2026-04-23

What is GPT-5.5 Pro?

GPT-5.5 Pro is OpenAIโ€™s high-compute variant within the GPT-5.5 family optimized for difficult reasoning, agentic workflows, deep research, and precision-heavy professional tasks. It is positioned less as a general โ€œfast defaultโ€ model and more as a model for difficult problems where latency is secondary to quality.

Main Features of GPT-5.5 Pro

  • 1M+ context window: Supports 1,050,000 tokens for extremely large repositories, contracts, logs, or research corpora.
  • High-accuracy reasoning: Tuned for tougher questions where correctness matters more than latency.
  • Tool orchestration: Can use web search, files, code interpreter, and hosted shell in Responses API workflows.
  • Vision input support: Accepts images for charts, diagrams, screenshots, and scanned content.
  • Enterprise-scale automation: Suitable for agent workflows that combine planning, retrieval, execution, and verification.
  • Large outputs: Up to 128,000 output tokens for reports, code generation, and long-form synthesis.

Benchmark Performance (Reported)

Selected published benchmark figures include:

  • GDPval: 82.3%
  • BrowseComp: 90.1%
  • FrontierMath Tier 1โ€“3: 52.4%
  • FrontierMath Tier 4: 39.6%
  • Investment Banking Modeling Tasks (internal): 88.6%

These reported results position it particularly strongly for difficult knowledge work and tool-augmented reasoning.

GPT-5.5 Pro vs GPT-5.5 vs GPT-5.4 Pro

ModelBest forContextReasoningNotable point
GPT-5.5 ProHighest-precision professional work1,050,000HighestSlower, more compute, stronger on hard tasks
GPT-5.5General frontier coding and professional work1,050,000HighestFaster and cheaper than Pro
GPT-5.4 ProPrevious Pro-tier option1,050,000HighestSimilar price/context, older snapshot and slightly different benchmark mix

In OpenAIโ€™s published benchmark table, GPT-5.5 Pro edges GPT-5.4 Pro on several measures such as GDPval, BrowseComp, GeneBench, and FrontierMath, while GPT-5.4 Pro slightly leads on Humanityโ€™s Last Exam with tools. That makes GPT-5.5 Pro a newer โ€œbest effortโ€ option rather than a strict across-the-board replacement.

How to access and use GPT-5.5 Pro API

Step 1: Sign Up for API Key

Log in toย cometapi.com. If you are not our user yet, please register first. Sign into yourย CometAPI console. Get the access credential API key of the interface. Click โ€œAdd Tokenโ€ at the API token in the personal center, get the token key: sk-xxxxx and submit.

Step 2: Send Requests toย GPT-5.5 Proย API

Select the โ€œgpt-5.5-proโ€ endpoint to send the API request and set the request body. The request method and request body are obtained from our website API doc. Our website also provides Apifox test for your convenience. Replace <YOUR_API_KEY> with your actual CometAPI key from your account.ย Where to call it:ย ย ย responseย format.

Insert your question or request into the content fieldโ€”this is what the model will respond to . Process the API response to get the generated answer.

Step 3: Retrieve and Verify Results

Process the API response to get the generated answer. After processing, the API responds with the task status and output data.

FAQ

Pricing for GPT 5.5 Pro

Explore competitive pricing for GPT 5.5 Pro, designed to fit various budgets and usage needs. Our flexible plans ensure you only pay for what you use, making it easy to scale as your requirements grow. Discover how GPT 5.5 Pro can enhance your projects while keeping costs manageable.

TierConditionComet Price (USD / M Tokens)Official Price (USD / M Tokens)Discount
short_contextlen <= 272000
Input:$24.0000/M
Output:$144.0000/M
Input:$30.0000/M
Output:$180.0000/M
-20%
long_context-
Input:$48.0000/M
Output:$216.0000/M
Input:$60.0000/M
Output:$270.0000/M
-20%

Sample code and API for GPT 5.5 Pro

Access comprehensive sample code and API resources for GPT 5.5 Pro to streamline your integration process. Our detailed documentation provides step-by-step guidance, helping you leverage the full potential of GPT 5.5 Pro in your projects.

curl https://api.cometapi.com/v1/responses \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $COMETAPI_KEY" \
  -d '{
    "model": "gpt-5.5-pro",
    "input": "How much gold would it take to coat the Statue of Liberty in a 1mm layer?",
    "reasoning": {
      "effort": "medium"
    }
  }'

cURL Code Example

curl https://api.cometapi.com/v1/responses \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $COMETAPI_KEY" \
  -d '{
    "model": "gpt-5.5-pro",
    "input": "How much gold would it take to coat the Statue of Liberty in a 1mm layer?",
    "reasoning": {
      "effort": "medium"
    }
  }'

Python Code Example

from openai import OpenAI
import os

# Get your CometAPI key from https://www.cometapi.com/console/token, and paste it here
COMETAPI_KEY = os.environ.get("COMETAPI_KEY") or "<YOUR_COMETAPI_KEY>"
BASE_URL = "https://api.cometapi.com/v1"

client = OpenAI(base_url=BASE_URL, api_key=COMETAPI_KEY)
response = client.responses.create(
    model="gpt-5.5-pro",
    input="How much gold would it take to coat the Statue of Liberty in a 1mm layer?",
    reasoning={"effort": "medium"},
)

print(response.output_text)

JavaScript Code Example

import OpenAI from "openai";

// Get your CometAPI key from https://www.cometapi.com/console/token, and paste it here
const COMETAPI_KEY = process.env.COMETAPI_KEY || "<YOUR_COMETAPI_KEY>";
const BASE_URL = "https://api.cometapi.com/v1";

const client = new OpenAI({
  apiKey: COMETAPI_KEY,
  baseURL: BASE_URL,
});

const response = await client.responses.create({
  model: "gpt-5.5-pro",
  input: "How much gold would it take to coat the Statue of Liberty in a 1mm layer?",
  reasoning: {
    effort: "medium",
  },
});

console.log(response.output_text);