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

gpt-5.6

Input:$4/M
Output:$24/M
Cache Read:$0.4/M
Cache Write:$5/M
Yayฤฑnlandฤฑ:Jul 20, 2026
Yeni
Popรผler
Ticari kullanฤฑm

gpt-5.6 iรงin Playground

gpt-5.6'ฤฑn Playground'unu keลŸfedin โ€” modelleri test etmek ve sorgularฤฑ gerรงek zamanlฤฑ olarak รงalฤฑลŸtฤฑrmak iรงin etkileลŸimli bir ortam. Prompt'larฤฑ deneyin, parametreleri ayarlayฤฑn ve geliลŸtirmeyi hฤฑzlandฤฑrmak ve kullanฤฑm senaryolarฤฑnฤฑ doฤŸrulamak iรงin anฤฑnda yineleyin.

gpt-5.6 iรงin Fiyatlandฤฑrma

gpt-5.6 iรงin รงeลŸitli bรผtรงelere ve kullanฤฑm ihtiyaรงlarฤฑna uygun rekabetรงi fiyatlandฤฑrmayฤฑ keลŸfedin. Esnek planlarฤฑmฤฑz sadece kullandฤฑฤŸฤฑnฤฑz kadar รถdeme yapmanฤฑzฤฑ saฤŸlar ve ihtiyaรงlarฤฑnฤฑz bรผyรผdรผkรงe kolayca รถlรงeklendirme imkanฤฑ sunar. gpt-5.6'in maliyetleri yรถnetilebilir tutarken projelerinizi nasฤฑl geliลŸtirebileceฤŸini keลŸfedin.

ModelTierConditionComet Price (USD / M Tokens)Official Price (USD / M Tokens)Discount
gpt-5.6short_contextlen <= 272000
Input:$4.0000/M
Output:$24.0000/M
Cache Read:$0.4000/M
Cache Write:$5.0000/M
Input:$5.0000/M
Output:$30.0000/M
Cache Read:$0.5000/M
Cache Write:$6.2500/M
-20%
long_context-
Input:$8.0000/M
Output:$36.0000/M
Cache Read:$0.8000/M
Cache Write:$10.0000/M
Input:$10.0000/M
Output:$45.0000/M
Cache Read:$1.0000/M
Cache Write:$12.5000/M
-20%
gpt-5.6-lunashort_contextlen <= 272000
Input:$0.8000/M
Output:$4.8000/M
Cache Read:$0.0800/M
Cache Write:$1.0000/M
Input:$1.0000/M
Output:$6.0000/M
Cache Read:$0.1000/M
Cache Write:$1.2500/M
-20%
long_context-
Input:$1.6000/M
Output:$7.2000/M
Cache Read:$0.1600/M
Cache Write:$2.0000/M
Input:$2.0000/M
Output:$9.0000/M
Cache Read:$0.2000/M
Cache Write:$2.5000/M
-20%
gpt-5.6-solshort_contextlen <= 272000
Input:$4.0000/M
Output:$24.0000/M
Cache Read:$0.4000/M
Cache Write:$5.0000/M
Input:$5.0000/M
Output:$30.0000/M
Cache Read:$0.5000/M
Cache Write:$6.2500/M
-20%
long_context-
Input:$8.0000/M
Output:$36.0000/M
Cache Read:$0.8000/M
Cache Write:$10.0000/M
Input:$10.0000/M
Output:$45.0000/M
Cache Read:$1.0000/M
Cache Write:$12.5000/M
-20%
gpt-5.6-terrashort_contextlen <= 272000
Input:$2.0000/M
Output:$12.0000/M
Cache Read:$0.2000/M
Cache Write:$2.5000/M
Input:$2.5000/M
Output:$15.0000/M
Cache Read:$0.2500/M
Cache Write:$3.1250/M
-20%
long_context-
Input:$4.0000/M
Output:$18.0000/M
Cache Read:$0.4000/M
Cache Write:$5.0000/M
Input:$5.0000/M
Output:$22.5000/M
Cache Read:$0.5000/M
Cache Write:$6.2500/M
-20%

gpt-5.6 iรงin รถrnek kod ve API

gpt-5.6 iรงin kapsamlฤฑ รถrnek kodlara ve API kaynaklarฤฑna eriลŸerek entegrasyon sรผrecinizi kolaylaลŸtฤฑrฤฑn. Ayrฤฑntฤฑlฤฑ dokรผmantasyonumuz adฤฑm adฤฑm rehberlik saฤŸlayarak projelerinizde gpt-5.6'in tรผm potansiyelinden yararlanmanฤฑza yardฤฑmcฤฑ olur.

curl https://api.cometapi.com/v1/responses \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $COMETAPI_KEY" \
  -d '{
    "model": "gpt-5.6-sol",
    "input": "Tell me a three sentence bedtime story about a unicorn."
  }'

cURL Code Example

curl https://api.cometapi.com/v1/responses \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $COMETAPI_KEY" \
  -d '{
    "model": "gpt-5.6-sol",
    "input": "Tell me a three sentence bedtime story about a unicorn."
  }'

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

console.log(response.output_text);

Uptime

Son 30 gรผnlรผk istek baลŸarฤฑ oranฤฑ; her model saฤŸlayฤฑcฤฑsฤฑnฤฑn gรผvenilirliฤŸini yansฤฑtฤฑr. CometAPI, baฤŸlฤฑ tรผm saฤŸlayฤฑcฤฑlarฤฑ 7/24 gerรงek zamanlฤฑ olarak izler.

RespondLIVE
3191msAvg. Response
UptimeLIVE
100.0%Avg. Uptime

gpt-5.6 Sรผrรผmleri

gpt-5.6'nฤฑn birden fazla anlฤฑk gรถrรผntรผye sahip olmasฤฑnฤฑn nedeni; gรผncellemeler sonrasฤฑ รงฤฑktฤฑ varyasyonlarฤฑ nedeniyle tutarlฤฑlฤฑk iรงin eski anlฤฑk gรถrรผntรผlere ihtiyaรง duyulmasฤฑ, geliลŸtiricilere uyum ve geรงiลŸ iรงin bir geรงiลŸ dรถnemi saฤŸlanmasฤฑ ve kullanฤฑcฤฑ deneyimini optimize etmek iรงin kรผresel veya bรถlgesel uรง noktalara karลŸฤฑlฤฑk gelen farklฤฑ anlฤฑk gรถrรผntรผler iรงerebilir. Sรผrรผmler arasฤฑndaki detaylฤฑ farklar iรงin lรผtfen resmi belgelere baลŸvurun.

Version
gpt-5.6
gpt-5.6-luna
gpt-5.6-sol
gpt-5.6-terra