跳转到主要内容
POST
/
generate
/
k
/
imagen4-fast
Imagen4-Fast 图片生成
curl --request POST \
  --url https://api.sinancode.com/v1/generate/k/imagen4-fast \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "aspect_ratio": "16:9",
  "negative_prompt": "blurry, low quality",
  "num_images": 1,
  "prompt": "a serene mountain landscape",
  "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 serene mountain landscape"

aspect_ratio
enum<string>
default:16:9

宽高比(可选,默认 16:9)

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

"16:9"

negative_prompt
string

反向提示词(可选)

Example:

"blurry, low quality"

num_images
integer
default:1

生成图片数量(可选,1-4张,默认1)

Required range: 1 <= x <= 4
Example:

1

seed
integer

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

Example:

0

Response

OK

task_id
string
required

Task ID

Example:

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