View a markdown version of this page

GPT-5.5 - Amazon Bedrock

GPT-5.5

Icon showing a circular pattern with interwoven curved segments forming a pinwheel design. OpenAI — GPT-5.5

Model Details

GPT-5.5 is OpenAI's most capable model, designed for advanced coding, research, analysis, software operation, document workflows, and long-running agentic tasks. GPT-5.5 can understand open-ended goals, use tools, reason across longer workflows, navigate ambiguity, and carry complex tasks through to completion with less orchestration. For more information about model development and performance, see the model/service card.

  • Model launch date: June 1, 2026

  • EOL no sooner than: June 1, 2027

  • Legacy period: at least 6 months

  • Model lifecycle policy: Model lifecycle (For Models Launched Prior to Sept 7 2026)

  • Model EOL date: N/A

  • End User License Agreements and Terms of Use: View

  • Model lifecycle: Active

  • Context window: 1M tokens

  • Max output tokens: N/A

  • Marketplace product ID: prod-indw4nwkcsyua

Input Modalities Output Modalities
Red circle with white X icon indicating error, cancel, or close action. AudioRed circle with white X icon indicating error, cancel, or close action. Embedding
Green circle with white checkmark icon. ImageRed circle with white X icon indicating error, cancel, or close action. Image
Red circle with white X icon indicating error, cancel, or close action. SpeechRed circle with white X icon indicating error, cancel, or close action. Speech
Green circle with white checkmark icon. TextGreen circle with white checkmark icon. Text
Red circle with white X icon indicating error, cancel, or close action. VideoRed circle with white X icon indicating error, cancel, or close action. Video

Endpoints and APIs supported

The following tables show which endpoints and APIs are supported for GPT-5.5. For more information, see APIs supported by Amazon Bedrock and Endpoints supported by Amazon Bedrock.

Endpoint support

Endpoint Supported
bedrock-runtime not-supported
bedrock-mantle supported

APIs supported on bedrock-runtime endpoint

Messages Responses Chat Completions Converse Invoke
not-supported not-supported not-supported not-supported not-supported

APIs supported on bedrock-mantle endpoint

Messages Responses Chat Completions Converse Invoke
not-supported supported supported not-supported not-supported
Note

On bedrock-mantle, both APIs use the /openai/v1 base path, not /v1. Use either API with this model:

  • For Responses, use /openai/v1/responses.

  • For Chat Completions, use /openai/v1/chat/completions.

Capabilities and Features

Bedrock Features

Features supported using bedrock-mantle endpoint

Pricing

All prices are in USD per 1 million tokens for the Standard tier.

Commercial In-Region prices include a 10% fee over OpenAI rates. You do not need to add this fee.

Long-context rates apply to all input and output tokens, not just tokens above 272K.

Priority and Flex tiers are not supported for this model.

Commercial Regions — short context (272K input tokens or fewer)

Inference option Input Input — 30m cache write Input — cache read Output
In-Region$5.50$0.55$33.00

Commercial Regions — long context (more than 272K input tokens)

Inference option Input Input — 30m cache write Input — cache read Output
In-Region$11.00$1.10$49.50

Programmatic Access

Use the following model IDs and endpoint URLs to access this model programmatically. For more information about the available APIs and endpoints, see APIs supported and Endpoints supported.

Endpoint Model ID In-Region endpoint URL Geo inference ID Global inference ID
bedrock-mantle openai.gpt-5.5 https://bedrock-mantle.{region}.api.aws/openai/v1 Not supported Not supported

For example, if region is us-east-2 (Ohio), then the bedrock-mantle endpoint URL will be "https://bedrock-mantle.us-east-2.api.aws/openai/v1".

Service Tiers

Amazon Bedrock offers multiple service tiers to match your workload requirements. Standard provides pay-per-token access with no commitment (set "service_tier": "default" or omit the field). Priority delivers the fastest response times for a price premium (set "service_tier": "priority"). Flex provides lower-cost access for flexible, non-time-sensitive workloads (set "service_tier": "flex"). Reserved provides dedicated throughput with a term commitment for predictable workloads; it is set at the account level rather than per request (contact your AWS account team to enable). For more information, see service tiers.

Standard Priority Flex Reserved
Green circle with white checkmark icon. Red circle with white X icon indicating error, cancel, or close action. Red circle with white X icon indicating error, cancel, or close action. Red circle with white X icon indicating error, cancel, or close action.

Regional Availability

Regional availability at a glance

Amazon Bedrock offers three inference options: In-Region keeps requests within a single Region for strict compliance, Geo Cross-Region routes across Regions within a geography (such as US, EU, and APAC) while respecting data residency, and Global Cross-Region routes anywhere worldwide when there are no residency constraints. Refer to the Regional availability by models page for more details.

Availability differs by endpoint.

Availability using the bedrock-mantle endpoint

Region In-Region Geo Global
us-east-1 (N. Virginia)Green circle with white checkmark icon.Red circle with white X icon indicating error, cancel, or close action.Red circle with white X icon indicating error, cancel, or close action.
us-east-2 (Ohio)Green circle with white checkmark icon.Red circle with white X icon indicating error, cancel, or close action.Red circle with white X icon indicating error, cancel, or close action.

Quotas and Limits

Your AWS account has default quotas to maintain the performance of the service and to ensure appropriate usage of Amazon Bedrock. The default quotas assigned to an account might be updated depending on regional factors, payment history, fraudulent usage, and/or approval of a quota increase request. For more information, see Quotas for Amazon Bedrock documentation and see the limits for the model.

Sample Code

Step 1 - AWS Account: If you have an AWS account already, skip this step. If you are new to AWS, sign up for an AWS account.

Step 2 - API key: Go to the Amazon Bedrock console and generate a long-term API key.

Step 3 - Get the SDK: To use this getting started guide, you must have Python already installed. Then install the relevant software depending on the APIs you are using.

For both APIs, choose the OpenAI SDK tab.

OpenAI SDK
pip install openai

Step 4 - Set environment variables

Configure your environment to use the API key for authentication.

bedrock-mantle
OPENAI_API_KEY="<provide your Bedrock API key>" OPENAI_BASE_URL="https://bedrock-mantle.us-east-2.api.aws/openai/v1"

Step 5 - Run your first inference request

Save the file as bedrock-first-request.py

bedrock-mantle

Use the settings from Step 4 - Set environment variables. Choose the bedrock-mantle tab. The Chat tab uses the Chat Completions API.

Responses API
from openai import OpenAI client = OpenAI() response = client.responses.create( model="openai.gpt-5.5", input="Can you explain the features of Amazon Bedrock?" ) print(response)
Chat
from openai import OpenAI client = OpenAI() response = client.chat.completions.create( model="openai.gpt-5.5", messages=[{"role": "user", "content": "Can you explain the features of Amazon Bedrock?"}] ) print(response)