5.3 Codex technical docs
Endpoint, auth header, parameters, prices, and tested request examples for GPT 5.3 Codex.
Endpoint and pricing
Request headers
Bearer Imole API key.
Use application/json for JSON requests.
Request parameters
Text model id.
String input or Responses input array.
Legacy chat-style array. The router converts it to Responses input.
System or developer instruction inserted ahead of the user task.
Optional provider output control. Imole does not require it or impose its own token ceiling.
Optional reasoning controls when supported, including effort and Pro mode.
Sampling randomness when the model supports it.
Nucleus sampling control.
Return server-sent events when supported.
true, falseTool definitions for tool-enabled Responses calls.
Tool selection policy.
auto, none, requiredAllow multiple tool calls in one turn.
true, falseStructured text format controls for Responses.
Compatibility field for JSON-style output requests.
Optional request metadata.
Tested request examples
curl -X POST "https://api.imole.app/v1/responses" \
-H "Authorization: Bearer $IMOLE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.3-codex",
"input": "Review this repository plan and list the three highest-risk implementation gaps.",
"instructions": "Be direct and practical.",
"max_output_tokens": 180
}'curl -X POST "https://api.imole.app/v1/responses" \
-H "Authorization: Bearer $IMOLE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.3-codex",
"input": [
{
"role": "user",
"content": [
{
"type": "input_text",
"text": "List three shell commands to inspect a failing deploy."
}
]
}
],
"max_output_tokens": 120
}'curl -X POST "https://api.imole.app/v1/responses" \
-H "Authorization: Bearer $IMOLE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.3-codex",
"messages": [
{
"role": "system",
"content": "Respond in short bullet points."
},
{
"role": "user",
"content": "Summarize the benefits of small, atomic pull requests in two bullets."
}
],
"max_output_tokens": 120
}'