GPT-5 시리즈
GPT-5.5 Chat
GPT-5.5 with enhanced general reasoning, coding, and multimodal capabilities
POST
- OpenAI-compatible Chat Completions API
- Select the
gpt-5.5model via themodelparameter - Supports streaming output (SSE)
- Supports multi-turn conversation, system prompts, and vision input
Authorizations
All endpoints require Bearer Token authenticationGet your API Key from the API Key Management PageAdd to request header:
Body
모델 nameExample:
"gpt-5.5"List of conversation messages in chronological order
Whether to enable streaming output (Server-Sent Events)
true: Stream tokens incrementallyfalse: Return the complete response at once
Maximum number of tokens to generateUses the model’s default limit when not set
Sampling temperature, controls output randomness
- Range:
0to2 - Lower values produce more deterministic output; higher values produce more varied output
Nucleus sampling probability thresholdRange:
0 to 1. It is not recommended to modify both temperature and top_p at the same timeStop sequences — generation stops when these strings are encounteredMaximum 4 stop sequences
응답
Unique identifier for this request
Object type, always
chat.completionRequest creation timestamp (Unix)
The model that was actually used
List of generated results
choices[].message.role: Message role, alwaysassistantchoices[].message.content: Generated text contentchoices[].finish_reason: Stop reason —stop/length/content_filterchoices[].index: Result index
Token usage statistics for this request
usage.prompt_tokens: Input token countusage.completion_tokens: Output token countusage.total_tokens: Total token count