- OpenAI通用接口
- gemini
- Midjourney API文档
- Flux(文生图)
- Replicate格式
- OpenAI DallE3格式POST
- Runway视频接口
- Luma视频接口
- 可灵API(官方接口)
- 工作流接口
- suno
- ideogram
聊天接口(OpenAI格式通用)
POST
/v1/chat/completions
请求参数
Header 参数
Content-Type
string
必需
示例值:
application/json
Accept
string
必需
示例值:
application/json
Authorization
string
必需
示例值:
sk-L7fNKCciMifMrAeE25401dEd52A54669Bc832851C460D7Be
Body 参数application/json
model
string
必需
messages
array [object {2}]
必需
role
string
必需
content
array [object {3}]
必需
temperature
integer
可选
top_p
但不是两者。top_p
integer
可选
temperature
但不是两者。n
integer
可选
stream
boolean
可选
data: [DONE]
发送,流由消息终止。有关示例代码,请参阅 OpenAI Cookbook 。stop
string
可选
max_tokens
integer
可选
presence_penalty
number
可选
frequency_penalty
number
可选
logit_bias
null
可选
user
string
可选
示例
{
"max_tokens": 1024,
"model": "gpt-4o",
"temperature": 0.5,
"top_p": 1,
"presence_penalty": 0,
"frequency_penalty": 0,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "帮我加一只猫"
},
{
"type": "image_url",
"image_url": "https://cdn.deepwl.cn/gemini/image/20250329/d8s0xmydxg6lzausxk.png"
}
]
}
],
"stream": true
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/v1/chat/completions' \
--header 'Accept: application/json' \
--header 'Authorization: sk-L7fNKCciMifMrAeE25401dEd52A54669Bc832851C460D7Be' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"max_tokens": 1024,
"model": "gpt-4o",
"temperature": 0.5,
"top_p": 1,
"presence_penalty": 0,
"frequency_penalty": 0,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "帮我加一只猫"
},
{
"type": "image_url",
"image_url": "https://cdn.deepwl.cn/gemini/image/20250329/d8s0xmydxg6lzausxk.png"
}
]
}
],
"stream": true
}'
返回响应
🟢200成功
application/json
Body
id
string
ID 编号
object
string
必需
created
integer
必需
choices
array[object (Choice) {3}]
必需
index
integer
可选
message
object (Message)
可选
finish_reason
string
可选
usage
object (Usage)
必需
prompt_tokens
integer
必需
completion_tokens
integer
必需
total_tokens
integer
必需
示例
{
"id": "chatcmpl-123",
"object": "chat.completion",
"created": 1677652288,
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "\n\nHello there, how may I assist you today?"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 9,
"completion_tokens": 12,
"total_tokens": 21
}
}
修改于 2025-04-10 13:01:26