
🇨🇳 Chinese

🇨🇳 Chinese
- OpenAI格式
- Anthropic
- Suno(音乐)
- Udio(音乐)
- Midjourney API文档(生图)
- Flux(生图)
- Recraft(生图)
- Ideogram(生图)
- Luma(视频)
- Runway(视频)
- PIKA(视频)
- 可灵API(官方接口)
- Replicate 通用接口
- MiniMax海螺(视频)
Generate(文生图)
POST
/ideogram/generate
根据给定的提示和可选参数同步生成图像。
返回的图像 URL 在 24 小时内有效,超过该时间将无法访问图像。
图像URL为官方原链接,请注意网络环境是否能访问。
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
string
optional
Header Params
string
optional
Authorization
string
optional
Default:
{{YOUR_API_KEY}}
Body Params application/json
image_request
object
required
prompt
string
required
生成图像的提示。
aspect_ratio
string
optional
(不能与分辨率一起使用)用于图像生成的宽高比,决定图像的分辨率。默认为 ASPECT_1_1。
Default:
ASPECT_1_1
model
string
optional
用于生成的模型。默认为 V_2。
Default:
V_2
Examples:
V_1V_1_TURBOV_2V_2_TURBO
magic_prompt_option
string
optional
确定是否应该在生成请求时使用 MagicPrompt
Default:
AUTO
Examples:
AUTOONOFF
seed
integer
optional
style_type
string
optional
生成的样式类型;这仅适用于 V_2 及以上版本的模型,不应为 V_1 版本的模型指定。
示例值:GENERAL、REALISTIC、DESIGN、RENDER_3D、ANIME
Examples:
GENERALREALISTICDESIGNRENDER_3DANIME
num_images
string
optional
negative_prompt
string
optional
描述从图像中排除的内容。提示中的描述优先于负提示中的描述。
resolution
string
optional
最终图像的分辨率。
Example:
RESOLUTION_832_1152
Example
{
"image_request": {
"model": "V_2_TURBO",
"magic_prompt_option": "AUTO",
"seed": 111,
"prompt": "cat",
"num_images": 1
}
}
Responses
🟢200成功
application/json
Body
data
array [object {5}]
required
包含生成图像的图像对象列表。
seed
integer
required
prompt
string
required
用于生成的提示。这可能与原始提示不同。
resolution
string
required
最终图像的分辨率。
url
string | null
required
生成的图像的直接链接。
is_image_safe
boolean
required
该请求是否通过安全检查。如果为假,网址字段将为空。
created
string
required
请求创建的时间。
Example
{
"data": [
{
"seed": 12345,
"prompt": "A serene tropical beach scene. Dominating the foreground are tall palm trees with lush green leaves, standing tall against a backdrop of a sandy beach. The beach leads to the azure waters of the sea, which gently kisses the shoreline. In the distance, there's an island or landmass with a silhouette of what appears to be a lighthouse or tower. The sky above is painted with fluffy white clouds, some of which are tinged with hues of pink and orange, suggesting either a sunrise or sunset.",
"resolution": "1024x1024",
"url": "https://ideogram.ai/api/images/direct/8YEpFzHuS-S6xXEGmCsf7g",
"is_image_safe": true
},
{
"seed": 12345,
"prompt": "A serene tropical beach scene. Dominating the foreground are tall palm trees with lush green leaves, standing tall against a backdrop of a sandy beach. The beach leads to the azure waters of the sea, which gently kisses the shoreline. In the distance, there's an island or landmass with a silhouette of what appears to be a lighthouse or tower. The sky above is painted with fluffy white clouds, some of which are tinged with hues of pink and orange, suggesting either a sunrise or sunset.",
"resolution": "1024x1024",
"url": "https://ideogram.ai/api/images/direct/8YEpFzHuS-S6xXEGmCsf7g",
"is_image_safe": true
}
],
"created": "2000-01-23T04:56:07.000Z"
}
Modified at 2025-01-09 14:02:24