Create Chat Completion
Creates a model response from conversation history with streaming, tools, and usage accounting.
application/json
gpt-4o, gpt-4.1, gpt-5, o3, o4-mini
curl -X POST https://api.routekey.ai/v1/chat/completions \
-H "Authorization: Bearer sk-your-key" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4o",
"messages": [
{
"role": "user",
"content": "Hello from Route Key"
}
],
"stream": false
}'{
"id": "chatcmpl_xxx",
"object": "chat.completion",
"created": 0,
"model": "gpt-4o",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "Hello!"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 8,
"completion_tokens": 3,
"total_tokens": 11
}
}curl -X POST 'https://api.routekey.ai/v1/chat/completions' \
-H 'Authorization: Bearer sk-your-key'
-H 'Content-Type: application/json'
-d '{
"model": "gpt-4o",
"messages": [
{
"role": "user",
"content": "Hello from Route Key"
}
],
"stream": false
}'Tham so
| Name | Kieu | Bat buoc | Description |
|---|---|---|---|
model | string | Co | Ten mo hinh |
messages | array<object> | Co | Chat |
temperature | number | Khong | Temperature |
top_p | number | Khong | Top P |
stream | boolean | Khong | Thoi gian thuc |
max_tokens | integer | Khong | Max tokens |
tools | array<object> | Khong | Tools |
response_format | object | Khong | Response format |
Phan hoi
| Name | Kieu | Bat buoc | Description |
|---|---|---|---|
id | string | - | ID |
object | string | - | Object |
created | integer | - | Created |
model | string | - | Ten mo hinh |
choices | array<object> | - | Choices |
usage | object | - | Usage |
Ghi chu
- OpenAI Chat Completions
- Use the same request shape as the matching provider API when the backend channel is enabled.