跳转到主要内容
POST
/
generate
/
k
/
gpt4o-image
GPT-4o Image 图片生成
curl --request POST \
  --url https://api.sinancode.com/v1/generate/k/gpt4o-image \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "filesUrl": [
    ""
  ],
  "isEnhance": false,
  "maskUrl": "",
  "nVariants": 1,
  "prompt": "A beautiful sunset over the mountains",
  "size": "1:1"
}'
{
  "task_id": "01234567-89ab-cdef-0123-456789abcdef"
}
OpenAI 的多模态图片生成模型,支持图片理解、编辑和遮罩功能。

Authorizations

Authorization
string
header
required

请使用您的 API Token 进行认证

Body

application/json

Task parameters

size
enum<string>
default:1:1
required

尺寸(必填)- 图片宽高比,必须是支持的格式之一

可用选项:
1:1,
3:2,
2:3
Example:

"1:1"

filesUrl
string[]

文件 URL 列表(可选)- 文件 URL 列表,最多5张图片

Example:
[""]
isEnhance
boolean
default:false

启用增强(可选)- 提示词增强,默认 false

Example:

false

maskUrl
string

遮罩 URL(可选)- 用于编辑的遮罩图片 URL,黑色区域将被替换/修改

Example:

""

nVariants
enum<integer>
default:1

变体数量(可选)- 图片变体数量,可选 1、2 或 4,默认1

可用选项:
1,
2,
4
Example:

1

prompt
string

提示词(可选)- 描述你希望 GPT-4o 生成的内容

Example:

"A beautiful sunset over the mountains"

Response

OK

task_id
string
required

Task ID

Example:

"01234567-89ab-cdef-0123-456789abcdef"