Qwen3 Coder Next
https://api.sozdai.ai/v1/chat/completions#Pricing Summary
#Example request
Execute completions using standard OpenAI SDK formats by pointing base endpoints here.
curl https://api.sozdai.ai/v1/chat/completions \
-H "Authorization: Bearer $CORRY_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3-coder-next",
"messages": [{"role": "user", "content": "Hello"}]
}'#Response example
A standard OpenAI-compatible chat completion object. The model field is normalized to the name you requested.
{
"id": "chatcmpl-abc123",
"object": "chat.completion",
"model": "qwen3-coder-next",
"choices": [
{
"index": 0,
"message": { "role": "assistant", "content": "Hello! How can I help you today?" },
"finish_reason": "stop"
}
],
"usage": { "prompt_tokens": 12, "completion_tokens": 9, "total_tokens": 21, "cost": 0.000234, "currency": "USD" }
}