Chat Completions
When to use this page
Use this page if your existing client still calls /chat/completions.
Endpoint
POST https://api.quotaflow.ai/openai/v1/chat/completions
Request
{
"model": "gpt-5.5",
"messages": [
{ "role": "user", "content": "Return only the word ready." }
],
"stream": false
}
Curl
curl https://api.quotaflow.ai/openai/v1/chat/completions \
-H "Authorization: Bearer $QUOTAFLOW_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.5",
"messages": [{"role":"user","content":"Return only the word ready."}],
"stream": false
}'
Recommendation
Use /responses for new agent integrations. Keep /chat/completions for compatibility with older clients.
AI agents: start at
/llms.txt, fetch /llms-full.txt for full context, and parse /openapi.yaml for endpoint schemas.