Models
OpenAItext
GPT-5.5
OpenAI's newer frontier model with stronger reasoning depth, tool use, and reliability for demanding agentic tasks.
gpt-5.5Quickstart
Call this model
Chat completion
curl https://inference-api.worldrouter.ai/v1/chat/completions \
-H "Authorization: Bearer your_api_key" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.5",
"messages": [
{
"role": "user",
"content": "Hello"
}
]
}'