ModelsPricingEnterprise
500+ AI Model API, All In One API.Just In CometAPI
Models API
Developer
Quick StartDocumentationAPI Dashboard
Company
About usEnterprise
Resources
AI ModelsBlogChangelogSupport
Terms of ServicePrivacy Policy
© 2026 CometAPI · All rights reserved
Home/Models/OpenAI/GPT 5.5
O

GPT 5.5

Input:$4/M
Output:$24/M
A next-generation multimodal flagship model balancing exceptional performance with efficient response, dedicated to providing comprehensive and stable general-purpose AI services.
New
Commercial Use
Playground
Overview
Features
Pricing
API

Technical Specifications of GPT-5.5

ItemGPT-5.5
ProviderOpenAI
Model FamilyGPT-5 series
Release DateApril 23, 2026
Input TypesText, Images
Output TypesText
Tool UseYes (web browsing, coding tools, computer-use workflows)
Context WindowNot officially disclosed
Max Output TokensNot officially disclosed
Primary StrengthsAgentic coding, computer use, knowledge work, scientific research
AvailabilityChatGPT Plus / Pro / Business / Enterprise, Codex
API AccessAnnounced as coming soon after release

What is GPT-5.5?

GPT-5.5 is OpenAI’s latest flagship productivity-focused model positioned as a “new class of intelligence for real work.” Rather than only answering prompts, GPT-5.5 is optimized to complete messy multi-step tasks with less supervision. It is designed to plan, use tools, check outputs, and persist through ambiguity better than prior GPT-5.4 generation systems.

OpenAI positions GPT-5.5 as a major step toward practical AI coworkers that can finish real tasks instead of only chatting.

Main Features of GPT-5.5

  • Stronger autonomous task execution across multi-step workflows
  • State-of-the-art coding performance in terminal and repo-scale tasks
  • Better spreadsheet, document, and business workflow handling
  • Improved computer-use ability: navigating apps, interfaces, files
  • More token-efficient than GPT-5.4 on many tasks
  • Maintains GPT-5.4-class serving latency while increasing capability

Benchmark Performance of GPT-5.5

BenchmarkGPT-5.5GPT-5.4
Terminal-Bench 2.082.7%75.1%
Expert-SWE (internal)73.1%68.5%
GDPval84.9%83.0%
OSWorld-Verified78.7%75.0%
Toolathlon55.6%54.6%
BrowseComp84.4%82.7%
FrontierMath Tier 435.4%27.1%

These numbers suggest GPT-5.5 improves coding, tool use, browsing, and advanced reasoning over GPT-5.4.

GPT-5.5 vs Other Models

ModelBest ForRelative Position
GPT-5.5Real-world workflows + coding + toolsMost balanced flagship
GPT-5.4Prior flagshipLower benchmark scores
Claude Opus 4.7Writing / reasoning competitorTrails on some coding evals
Gemini 3.1 ProMultimodal ecosystem tasksTrails on several OpenAI evals

Limitations of GPT-5.5

  • Context window not publicly specified at launch
  • API access initially delayed for safety rollout
  • Can still require human review for critical legal/medical outputs
  • Premium availability tiers first
  • Some benchmark claims are vendor-reported

Best Use Cases

  1. Large codebase debugging and refactors
  2. Research + source gathering workflows
  3. Spreadsheet analysis and business planning
  4. Multi-tool automation tasks
  5. Internal knowledge work and documentation generation
  6. Scientific exploration and structured analysis

How to access and use GPT-5.5 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 API

Select the “gpt-5.5” 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

Can GPT-5.5 handle repository-scale coding tasks through the API?

Yes. GPT-5.5 is specifically optimized for agentic coding and scored 58.6% on SWE-Bench Pro and 82.7% on Terminal-Bench 2.0.

When should I use GPT-5.5 API instead of GPT-5.4 API?

Use GPT-5.5 for multi-step reasoning, software agents, and tool orchestration; use GPT-5.4 when lower cost or lighter workloads matter more.

What context window does GPT-5.5 support in the API?

Publicly reported deployment specifications indicate up to 400,000 tokens of context support.

Is GPT-5.5 API good for autonomous tool use and computer agents?

Yes. GPT-5.5 was explicitly tuned for computer-use workflows and performs strongly on OSWorld-Verified and Toolathlon-style evaluations.

How does GPT-5.5 compare with Claude Opus 4.7 for coding?

GPT-5.5 leads on several agentic coding and tool-use benchmarks, while Claude Opus 4.7 remains competitive or stronger on some SWE-style evaluations.

Can GPT-5.5 be used for research and knowledge-work automation?

Yes. GPT-5.5 shows strong gains on GDPval, BrowseComp, and scientific-research-oriented evaluations, making it suitable for advanced research assistance.

Does GPT-5.5 API support multimodal and tool-calling workflows?

Yes. GPT-5.5 supports multimodal inputs and advanced tool orchestration for agentic workflows.

Features for GPT 5.5

Explore the key features of GPT 5.5, designed to enhance performance and usability. Discover how these capabilities can benefit your projects and improve user experience.

Pricing for GPT 5.5

Explore competitive pricing for GPT 5.5, 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 can enhance your projects while keeping costs manageable.
Comet Price (USD / M Tokens)Official Price (USD / M Tokens)Discount
Input:$4/M
Output:$24/M
Input:$5/M
Output:$30/M
-20%

Sample code and API for GPT 5.5

Access comprehensive sample code and API resources for GPT 5.5 to streamline your integration process. Our detailed documentation provides step-by-step guidance, helping you leverage the full potential of GPT 5.5 in your projects.
POST
/v1/chat/completions
Python
JavaScript
Curl
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",
    input="Tell me a three sentence bedtime story about a unicorn.",
)

print(response.output_text)

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",
    input="Tell me a three sentence bedtime story about a unicorn.",
)

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",
  input: "Tell me a three sentence bedtime story about a unicorn.",
});

console.log(response.output_text);

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",
    "input": "Tell me a three sentence bedtime story about a unicorn."
  }'

More Models

C

Claude Opus 4.7

Input:$3/M
Output:$15/M
Claude Opus 4.7 is a hybrid reasoning model designed specifically for frontier-level coding, AI agents, and complex multi-step professional work. Unlike lighter models (e.g., Sonnet or Haiku variants), Opus 4.7 prioritizes depth, consistency, and autonomy on the hardest tasks.
A

Claude Sonnet 4.6

Input:$2.4/M
Output:$12/M
Claude Sonnet 4.6 is our most capable Sonnet model yet. It’s a full upgrade of the model’s skills across coding, computer use, long-context reasoning, agent planning, knowledge work, and design. Sonnet 4.6 also features a 1M token context window in beta.
O

GPT 5.5 Pro

Input:$24/M
Output:$144/M
An advanced model engineered for extremely complex logic and professional demands, representing the highest standard of deep reasoning and precise analytical capabilities.
O

GPT Image 2 ALL

Per Request:$0.04
GPT Image 2 is openai state-of-the-art image generation model for fast, high-quality image generation and editing. It supports flexible image sizes and high-fidelity image inputs.
O

GPT 5.5 ALL

Input:$4/M
Output:$24/M
GPT-5.5 excels in code writing, online research, data analysis, and cross-tool operations. The model not only improves its autonomy in handling complex multi-step tasks but also significantly improves reasoning capabilities and execution efficiency while maintaining the same latency as its predecessor, marking an important step towards automated office automation in AI.
D

DeepSeek V4 Pro

Input:$0.416/M
Output:$0.832/M
DeepSeek V4 Pro is a large-scale Mixture-of-Experts model from DeepSeek with 1.6T total parameters and 49B activated parameters, supporting a 1M-token context window. It is designed for advanced reasoning, coding, and long-horizon agent workflows, with strong performance across knowledge, math, and software engineering benchmarks.

Related Blog

How much is GPT-5.5
May 2, 2026
gpt-5-5

How much is GPT-5.5

GPT-5.5 is priced at $5 per 1M input tokens and $30 per 1M output tokens on OpenAI’s standard API pricing page. GPT-5.4 is half that price at $2.50 input and $15 output. GPT-5.5 is worth it when higher model quality saves more time, errors, or engineering effort than the price gap; otherwise GPT-5.4 or a cheaper competitor often delivers better ROI.
GPT-5.5 vs Claude Opus 4.7: Which AI to Use When Hallucination Matters (2026 Benchmark Data)
Apr 30, 2026
gpt-5-5
claude-opus-4-7
gpt-5-4

GPT-5.5 vs Claude Opus 4.7: Which AI to Use When Hallucination Matters (2026 Benchmark Data)

GPT-5.5 shows 86% hallucination rate vs Claude Opus 4.7's 36% in Terminal-Bench (2026). Here's when higher hallucination is acceptable and when it's a dealbreaker for your workflow.
ChatGPT Pricing 2026: Free vs Go vs Plus vs Pro – Detailed Comparison, Limits, Features, and Which Plan Is Worth It
Apr 27, 2026
chat-gpt

ChatGPT Pricing 2026: Free vs Go vs Plus vs Pro – Detailed Comparison, Limits, Features, and Which Plan Is Worth It

How much does ChatGPT cost in 2026? OpenAI offers a tiered structure ranging from a completely free plan with strict limits to premium options Understanding the differences in access to advanced models (such as GPT-5.5 variants), message limits, reasoning capabilities, image/video generation, and tools like Deep Research or Codex is essential for individuals, professionals, and businesses deciding on the best value.
GPT 5.5: What It Is, Key Features, Benchmarks, How to Use It
Apr 25, 2026
gpt-5-5

GPT 5.5: What It Is, Key Features, Benchmarks, How to Use It

GPT-5.5 is OpenAI’s April 23, 2026 frontier release for complex, real-world work. It is designed to understand tasks earlier, ask for less guidance, use tools more effectively, check its work, and keep going until the job is done. OpenAI says it is rolling out to Plus, Pro, Business, and Enterprise users in ChatGPT and Codex, while API access is in CometAPI.
DeepSeek v4 is now available on the web: How to access and test it
Apr 9, 2026
deepseek-v4

DeepSeek v4 is now available on the web: How to access and test it

DeepSeek V4 gray-scale test has leaked and is actively rolling out in limited form on the official web platform. Select users now see a redesigned interface with **Fast Mode** (default, high-speed daily use), **Expert Mode** (deep reasoning and complex problem-solving), and **Vision Mode** (multimodal image and video handling). This marks the most significant update since DeepSeek-V3.2, with rumored 1 million token context windows, updated knowledge bases, native multimodal capabilities, and a new underlying architecture optimized for speed, logic, and efficiency.