跳转到主要内容
POST
/
generate
/
k
/
imagen4-ultra
Imagen4-Ultra 图片生成
curl --request POST \
  --url https://api.sinancode.com/v1/generate/k/imagen4-ultra \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "aspect_ratio": "1:1",
  "negative_prompt": "blurry, low quality",
  "prompt": "a photorealistic portrait of a woman",
  "seed": 0
}'
{
  "task_id": "01234567-89ab-cdef-0123-456789abcdef"
}
Imagen 4 的旗舰版本,提供最高质量的图像生成效果。

Authorizations

Authorization
string
header
required

请使用您的 API Token 进行认证

Body

application/json

任务参数

prompt
string
required

提示词(必填,最大5000字符)

Maximum length: 5000
Example:

"a photorealistic portrait of a woman"

aspect_ratio
enum<string>
default:1:1

宽高比(可选,默认 1:1)

可用选项:
1:1,
16:9,
9:16,
3:4,
4:3
Example:

"1:1"

negative_prompt
string

反向提示词(可选)

Example:

"blurry, low quality"

seed
integer

随机种子(可选,整数类型)

Example:

0

Response

OK

task_id
string
required

Task ID

Example:

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