Qwen3 Coder Next
https://api.foxwire.ai/v1/chat/completions#Pricing Summary
#요청 예시
Execute completions using standard OpenAI SDK formats by pointing base endpoints here.
curl https://api.foxwire.ai/v1/chat/completions \
-H "Authorization: Bearer $CORRY_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3-coder-next",
"messages": [{"role": "user", "content": "Hello"}]
}'#응답 예시
표준 OpenAI 호환 채팅 컴플리션 객체입니다. model 필드는 요청한 이름으로 정규화됩니다.
{
"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" }
}