OpenAI
snapshot-20260831 commercialOpenAI provides APIs and tools for accessing advanced language models like GPT for building AI-powered applications.
curl https://api.openai.com/v1/chat/completions \
-H 'Authorization: Bearer $OPENAI_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model": "gpt-5.6", "messages": [{"role": "user", "content": [{"type": "image_url", "image_url": {"url": "https://example.com/screenshot.png", "detail": "original"}}]}]}'
curl https://api.openai.com/v1/responses \
-H 'Authorization: Bearer $OPENAI_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model": "gpt-5.6", "input": [{"type": "image_url", "image_url": {"url": "https://example.com/diagram.png", "detail": "original"}}]}'
curl https://api.openai.com/v1/images/generations \
-H 'Authorization: Bearer $OPENAI_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"model": "gpt-image-2",
"prompt": "A sleek wireless headphone on a clean surface",
"background": "transparent",
"output_format": "png"
}'
curl https://api.openai.com/v1/images/generations \
-H 'Authorization: Bearer $OPENAI_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"model": "gpt-image-2",
"prompt": "A sleek wireless headphone on a clean surface",
"background": "transparent",
"output_format": "png"
}'
curl https://api.openai.com/v1/responses \
-H 'Authorization: Bearer $OPENAI_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"model": "daybreak-blue-latest",
"input": "Review the following code for vulnerabilities and suggest patches: <paste code here>"
}'
curl https://api.openai.com/v1/responses \
-H 'Authorization: Bearer $OPENAI_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"model": "daybreak-red-latest",
"input": "Analyze this proof-of-concept for exploit validity in the context of our authorized engagement: <paste PoC here>"
}'
curl https://api.openai.com/v1/responses \
-H 'Authorization: Bearer $OPENAI_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"model": "daybreak-blue-latest",
"input": "Review the following code for vulnerabilities and suggest patches: <paste code here>"
}'
curl https://api.openai.com/v1/responses \
-H 'Authorization: Bearer $OPENAI_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"model": "daybreak-red-latest",
"input": "Analyze this proof-of-concept for exploit validity in the context of our authorized engagement: <paste PoC here>"
}' Summary
OpenAI provides APIs and tools for accessing advanced language models like GPT for building AI-powered applications.
Release history
- snapshot-20260831
- ›Adds hard monthly spend limits at the organization and project level that cause API requests to return a
429error once tracked spend reaches the configured cap.
- ›Adds hard monthly spend limits at the organization and project level that cause API requests to return a
- snapshot-20260829
OpenAI API platform adds hard spend limits for organizations and projects with 429 enforcement and spend alerts.
- ›Adds hard monthly spend limits for organizations and projects on the OpenAI API platform; once tracked spend reaches the cap, affected API calls return a
429error. - ›Adds spend alerts to notify teams before a hard limit is hit and traffic is interrupted.
- ›Adds hard monthly spend limits for organizations and projects on the OpenAI API platform; once tracked spend reaches the cap, affected API calls return a
- snapshot-20260828
GPT-5.6 family launches with Programmatic Tool Calling, prompt caching controls, persisted reasoning, and multi-agent orchestration in beta.
└──▷ TRY ITSend a full-resolution screenshot to GPT-5.6 for analysis without downscaling, using theoriginalimage detail setting.$ curl https://api.openai.com/v1/chat/completions \ -H 'Authorization: Bearer $OPENAI_API_KEY' \ -H 'Content-Type: application/json' \ -d '{"model": "gpt-5.6", "messages": [{"role": "user", "content": [{"type": "image_url", "image_url": {"url": "https://example.com/screenshot.png", "detail": "original"}}]}]}'
- ›New
gpt-5.6-sol(routed viagpt-5.6alias),gpt-5.6-terra, andgpt-5.6-lunamodels cover high-intelligence, balanced, and high-volume workload tiers respectively. - ›Adds Programmatic Tool Calling to GPT-5.6, enabling structured, API-driven tool invocation.
- ›Adds explicit prompt caching controls to GPT-5.6.
- ›Multi-agent orchestration support in beta for GPT-5.6.
- ›GPT-5.6 now accepts images at their original dimensions with
originalorautoimage detail settings.
- ›New
- snapshot-20260826└──▷ TRY ITPass a full-resolution image with
originaldetail to preserve fidelity when analysing diagrams or screenshots.$ curl https://api.openai.com/v1/responses \ -H 'Authorization: Bearer $OPENAI_API_KEY' \ -H 'Content-Type: application/json' \ -d '{"model": "gpt-5.6", "input": [{"type": "image_url", "image_url": {"url": "https://example.com/diagram.png", "detail": "original"}}]}'
- ›Adds the
gpt-5.6model alias, which routes requests togpt-5.6-solby default. - ›Adds three new models:
gpt-5.6-sol(frontier capability),gpt-5.6-terra(intelligence/cost balance), andgpt-5.6-luna(efficient high-volume workloads). - ›Adds persisted reasoning with
maxeffort support in GPT-5.6. - ›Adds Pro mode to GPT-5.6.
- ›Adds Multi-agent orchestration in beta via the Responses API for GPT-5.6.
- ›Adds the
- snapshot-20260825
OpenAI API adds hard monthly spend limits for organizations and projects, returning 429 errors when caps are reached.
- ›Adds hard spend limits at the organization and project level that trigger HTTP
429errors on API calls once tracked monthly spend reaches the configured cap. - ›Adds spend alerts to notify teams before a spend limit is hit and traffic is interrupted.
- ›Adds hard spend limits at the organization and project level that trigger HTTP
- snapshot-20260824
GPT-5.6 family launches with three tiers, Programmatic Tool Calling, prompt caching controls, persisted reasoning, and multi-agent orchestration beta.
- ›Adds the
gpt-5.6-solmodel (frontier capability),gpt-5.6-terra(balanced intelligence/cost), andgpt-5.6-luna(efficient high-volume) — and thegpt-5.6alias, which routes togpt-5.6-sol. - ›Adds Programmatic Tool Calling to GPT-5.6, enabling structured, code-driven invocation of tools via the API.
- ›Adds explicit prompt caching controls to GPT-5.6, giving callers direct influence over cache behavior rather than relying on automatic caching.
- ›Adds Pro mode to GPT-5.6 for enhanced capability on demanding workloads.
- ›Adds Multi-agent orchestration in beta to the Responses API under GPT-5.6, enabling coordinated multi-agent workflows.
+1 moreshow less
- ›GPT-5.6 now accepts images at their original dimensions, with
originalorautoimage detail settings.
- ›Adds the
- snapshot-20260823
OpenAI releases GPT-Realtime-2.1 and GPT-Realtime-2.1 mini: updated realtime reasoning models with improved voice handling.
- ›New
gpt-realtime-2.1model adds improved alphanumeric recognition, silence and noise handling, and interruption behavior for realtime reasoning workloads. - ›New
gpt-realtime-2.1-minimodel offers a faster, lower-cost distilled reasoning option for latency-sensitive or cost-constrained realtime applications.
- ›New
- snapshot-20260822
OpenAI API adds per-request regional processing selection via prefixed domain for Global geography projects.
- ›Enables per-request regional processing by using a prefixed domain with an API key from a project configured with Global geography, without changing existing eligibility, data retention, endpoint, or model support requirements.
- snapshot-20260821
OpenAI adds a Prompt Caching dashboard and transparent background support for gpt-image-2 image generation.
└──▷ TRY ITGenerate a product image with a transparent background for compositing — useful when you need to layer the result over a custom background without post-processing.$ curl https://api.openai.com/v1/images/generations \ -H 'Authorization: Bearer $OPENAI_API_KEY' \ -H 'Content-Type: application/json' \ -d '{ "model": "gpt-image-2", "prompt": "A sleek wireless headphone on a clean surface", "background": "transparent", "output_format": "png" }'
- ›Adds
background: transparentsupport (preview) forgpt-image-2andgpt-image-2-2026-04-21in thev1/images/generations,v1/images/edits, andv1/responsesendpoints; output format must bepngorwebp(jpegdoes not support transparent backgrounds). - ›Releases a Prompt Caching dashboard on the OpenAI API platform showing cache hit rate over time, cache reads per write, and a breakdown of cache-read, cache-write, and uncached tokens; filterable by model and service tier.
- ›Adds
- snapshot-20260821
OpenAI adds a Prompt Caching dashboard and transparent background support for gpt-image-2 image generation.
└──▷ TRY ITGenerate a product image with a transparent background for compositing — useful when you need to layer the result over a custom background without post-processing.$ curl https://api.openai.com/v1/images/generations \ -H 'Authorization: Bearer $OPENAI_API_KEY' \ -H 'Content-Type: application/json' \ -d '{ "model": "gpt-image-2", "prompt": "A sleek wireless headphone on a clean surface", "background": "transparent", "output_format": "png" }'
- ›Adds
background: transparentsupport (preview) forgpt-image-2andgpt-image-2-2026-04-21in thev1/images/generations,v1/images/edits, andv1/responsesendpoints; output format must bepngorwebp(jpegdoes not support transparent backgrounds). - ›Releases a Prompt Caching dashboard on the OpenAI API platform showing cache hit rate over time, cache reads per write, and a breakdown of cache-read, cache-write, and uncached tokens; filterable by model and service tier.
- ›Adds
- snapshot-20260820
OpenAI adds Daybreak Blue/Red security tiers with GPT-5.6 Cyber access and Ultrafast mode for GPT-5.6 Sol.
└──▷ TRY ITRun a secure code review against a file using the Daybreak Blue tier for defensive security work.$ curl https://api.openai.com/v1/responses \ -H 'Authorization: Bearer $OPENAI_API_KEY' \ -H 'Content-Type: application/json' \ -d '{ "model": "daybreak-blue-latest", "input": "Review the following code for vulnerabilities and suggest patches: <paste code here>" }'
Validate an exploit or run authorized penetration test analysis using the separately approved Daybreak Red tier with GPT-5.6 Cyber.$ curl https://api.openai.com/v1/responses \ -H 'Authorization: Bearer $OPENAI_API_KEY' \ -H 'Content-Type: application/json' \ -d '{ "model": "daybreak-red-latest", "input": "Analyze this proof-of-concept for exploit validity in the context of our authorized engagement: <paste PoC here>" }'
- ›Adds
daybreak-blue-latestmodel identifier viav1/responses, providing approved defenders access to general-purpose models (includinggpt-5.6-sol) for vulnerability discovery, secure code review, detection engineering, incident response, malware analysis, and patch validation. - ›Adds
daybreak-red-latestmodel identifier viav1/responses, providing separately approved access togpt-5.6-cyber— a purpose-trained model for authorized vulnerability reproduction, exploit validation, penetration testing, red teaming, and complex system analysis. - ›Announces Ultrafast mode, a new API service tier for
gpt-5.6-solrunning up to 14x faster than Standard processing (limited preview).
- ›Adds
- snapshot-20260820
OpenAI adds Daybreak Blue/Red security tiers with GPT-5.6 Cyber access and Ultrafast mode for GPT-5.6 Sol.
└──▷ TRY ITRun a secure code review against a file using the Daybreak Blue tier for defensive security work.$ curl https://api.openai.com/v1/responses \ -H 'Authorization: Bearer $OPENAI_API_KEY' \ -H 'Content-Type: application/json' \ -d '{ "model": "daybreak-blue-latest", "input": "Review the following code for vulnerabilities and suggest patches: <paste code here>" }'
Validate an exploit or run authorized penetration test analysis using the separately approved Daybreak Red tier with GPT-5.6 Cyber.$ curl https://api.openai.com/v1/responses \ -H 'Authorization: Bearer $OPENAI_API_KEY' \ -H 'Content-Type: application/json' \ -d '{ "model": "daybreak-red-latest", "input": "Analyze this proof-of-concept for exploit validity in the context of our authorized engagement: <paste PoC here>" }'
- ›Adds
daybreak-blue-latestmodel identifier viav1/responses, providing approved defenders access to general-purpose models (includinggpt-5.6-sol) for vulnerability discovery, secure code review, detection engineering, incident response, malware analysis, and patch validation. - ›Adds
daybreak-red-latestmodel identifier viav1/responses, providing separately approved access togpt-5.6-cyber— a purpose-trained model for authorized vulnerability reproduction, exploit validation, penetration testing, red teaming, and complex system analysis. - ›Announces Ultrafast mode, a new API service tier for
gpt-5.6-solrunning up to 14x faster than Standard processing (limited preview).
- ›Adds