Free tier available
OpenAI API
GPT 5.5 chat completions with live streaming through the Idoworx API.
Your Idoworx API key (copy now — shown once)
Use header Authorization: Bearer YOUR_KEY with https://idoworx.com/api/v1/chat/completions
Overview
Use the Idoworx OpenAI-compatible chat endpoint to call GPT 5.5. Copy the endpoint and example below — your requests go to Idoworx and stream back live.
Features
- Chat completions
- Live streaming
- GPT 5.5
Authentication
Bearer API key (Authorization header)
API key instructions
Click Get API Key on this page to create a free Idoworx key (shown once). Then POST https://idoworx.com/api/v1/chat/completions with model gpt-5.5 and Authorization: Bearer YOUR_IDOWORX_KEY. Set stream true for live streaming.
Rate limits
Shared fair-use limits. Excessive automated abuse may be blocked.
Example usage (python)
import requests
resp = requests.post(
"https://idoworx.com/api/v1/chat/completions",
headers={
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_IDOWORX_KEY",
},
json={
"model": "gpt-5.5",
"stream": True,
"messages": [{"role": "user", "content": "Hello"}],
},
stream=True,
timeout=120,
)
for line in resp.iter_lines():
if line:
print(line.decode())
Endpoint: https://idoworx.com/api/v1/chat/completions
FAQ
How do I get a key?
Click Get API Key on this page. Copy the key immediately — it is shown only once.
What model do I send?
Use "model": "gpt-5.5" in the JSON body.
Does streaming work?
Yes. Set stream to true and read Server-Sent Events lines.