Ideogram V3 接口
Ideogram V3 模型提供了高级的图像生成和处理能力。V3 接口与之前版本在参数和使用方式上有所不同,本节将详细介绍 V3 的各个接口及使用示例。
V3 Generate
POST https://camel.kr777.top/ideogram/v1/ideogram-v3/generate
根据给定提示词生成图像。V3 模型提供了更高质量的图像生成能力,支持更丰富的风格和参数控制。
用于生成图像的提示词
DEFAULT渲染速度选项,可选 TURBO, DEFAULT, QUALITY
1单次出图数量,范围 1-8
增加图片几乎不会增加生图耗时
1x1用于图像生成的宽高比,支持超多规格
可选 [‘1x3’, ‘3x1’, ‘1x2’, ‘2x1’, ‘9x16’, ‘16x9’, ‘10x16’, ‘16x10’, ‘2x3’, ‘3x2’, ‘3x4’, ‘4x3’, ‘4x5’, ‘5x4’, ‘1x1’]
和 V3 以下不同的模型使用的 ASPECT_10_16 类型的规范不同。
AUTO提示词增强选项。可用参数:AUTO, ON, OFF
AUTO生成图像的风格类型,可选 AUTO, GENERAL, REALISTIC, DESIGN
注意相对 V2 版本,类型更聚焦
描述不想在图像中出现的内容
随机种子,范围:0-2147483647
单次生成多张图时不要使用 seed,否则会生成相同图像
风格参考图片,可用于风格引导
调用示例
curl -X POST https://camel.kr777.top/ideogram/v1/ideogram-v3/generate \
-H "Api-Key: sk-***" \
-H "Content-Type: multipart/form-data" \
-F prompt="Delicate 3D cover design with various combat machines flying from an portal. The machines have different shapes, sizes, and colors. The portal is emitting swirling energy. The background contains a futuristic city with tall buildings. The text \"One Gateway, Infinite Models\" is placed in the center with neon lights, expansive view, cinematic lighting, vivid color, bright tone. clean text, cyber punk, smooth render" \
-F rendering_speed="QUALITY" \
-F num_images="2" \
-F aspect_ratio="2x1"V3 Remix
POST https://camel.kr777.top/ideogram/v1/ideogram-v3/remix
在参考图的基础上,根据提示词重新生成图像。V3 的 Remix 功能对原始图像的风格和内容有更好的保留能力。
用于重绘图像的提示词
原始图像文件
50原图的影响权重,范围 1-100,数值越大,结果越像原图。
DEFAULT渲染速度选项,可选 TURBO, DEFAULT, QUALITY
1单次出图数量,范围 1-8
输出图像的宽高比,可选 [‘1x3’, ‘3x1’, ‘1x2’, ‘2x1’, ‘9x16’, ‘16x9’, ‘10x16’, ‘16x10’, ‘2x3’, ‘3x2’, ‘3x4’, ‘4x3’, ‘4x5’, ‘5x4’, ‘1x1’]
风格参考图片,可用于风格引导
随机种子,范围:0-2147483647
AUTO提示词增强选项,可用参数:AUTO, ON, OFF
AUTO生成图像的风格类型,可选 AUTO, GENERAL, REALISTIC, DESIGN
描述不想在图像中出现的内容
调用示例
import requests
import os
data = {
"prompt": "bird playing with a cat in the snow, pixel art style",
"image_weight": "60",
"rendering_speed": "QUALITY",
"num_images": 1,
"seed": 1,
"aspect_ratio": "16x9",
"magic_prompt": "AUTO",
"style_type": "AUTO",
"negative_prompt": "blurry, bad anatomy, watermark",
}
# 原图 - 必填
source_image_path = "yourpath/image.jpeg"
if not os.path.exists(source_image_path):
raise FileNotFoundError(f"源图片未找到:{source_image_path}")
# initialize files parameter
files = None
# 样式参考图路径
style_reference_path = "yourpath/reference-image.png"
use_reference_image = True
# 准备文件上传
with open(source_image_path, "rb") as image_file:
if use_reference_image and os.path.exists(style_reference_path):
# 如果使用参考图片且文件存在,则设置 files 参数
files = {
"image": image_file,
"style_reference_images": open(style_reference_path, "rb"),
}
else:
if use_reference_image:
print(f"警告:样式参考图片未找到:{style_reference_path}")
files = {
"image": image_file,
}
response = requests.post(
"https://camel.kr777.top/ideogram/v1/ideogram-v3/remix",
headers={
"Api-Key": "sk-***" # 换成你在 CaMeL AI 生成的密钥
},
data=data,
files=files
)
print(response.json())
# save output image to file
response_json = response.json()
if response.ok and 'data' in response_json and len(response_json['data']) > 0:
image_data = response_json['data'][0]['url'] # 正确获取图片 URL
image_response = requests.get(image_data)
if image_response.ok:
with open('output.png', 'wb') as f:
f.write(image_response.content)
print("图片已保存到 output.png")
else:
print(f"获取图片失败:{image_response.status_code}")
else:
print("API 请求失败或返回数据中没有图片")
print(f"错误详情:{response_json}")V3 Edit
POST https://camel.kr777.top/ideogram/v1/ideogram-v3/edit
V3 的局部编辑功能允许用户通过提供原始图像和蒙版,精确地编辑图像的特定区域,同时保持其他区域不变。
用于编辑图像的提示词
原始图像文件
遮罩图片,黑色区域表示需要编辑的部分,白色区域表示保持不变
DEFAULT渲染速度选项,可选 TURBO, DEFAULT, QUALITY
1单次出图数量,范围 1-8
输出图像的宽高比
随机种子,范围:0-2147483647
AUTO提示词增强选项,可用参数:AUTO, ON, OFF
AUTO生成图像的风格类型,可选 AUTO, GENERAL, REALISTIC, DESIGN
描述不想在图像中出现的内容
调用示例
import requests
import os
# 原图 - 必填
source_image_path = "yourpath/image.jpeg"
# mask - 必填
mask_image_path = "yourpath/mask.jpg"
if not os.path.exists(source_image_path):
raise FileNotFoundError(f"源图片未找到:{source_image_path}")
with open(source_image_path, "rb") as image_file, open(mask_image_path, "rb") as mask_file:
response = requests.post(
"https://camel.kr777.top/ideogram/v1/ideogram-v3/edit",
headers={
"Api-Key": "sk-***" # 换成你在 CaMeL AI 生成的密钥
},
data={
"prompt": "remove text",
"rendering_speed": "DEFAULT",
"num_images": 1,
"seed": 1,
"aspect_ratio": "16x9",
"magic_prompt": "AUTO",
"style_type": "AUTO",
"negative_prompt": "blurry, bad anatomy, watermark",
},
files={
"image": image_file,
"mask": mask_file,
}
)
print(response.json())
# save output image to file
response_json = response.json()
if response.ok and 'data' in response_json and len(response_json['data']) > 0:
image_data = response_json['data'][0]['url'] # 正确获取图片 URL
image_response = requests.get(image_data)
if image_response.ok:
with open('output.png', 'wb') as f:
f.write(image_response.content)
print("图片已保存到 output.png")
else:
print(f"获取图片失败:{image_response.status_code}")
else:
print("API 请求失败或返回数据中没有图片")
print(f"错误详情:{response_json}")V3 Replace Background
POST https://camel.kr777.top/ideogram/v1/ideogram-v3/replace-background
V3 的背景替换功能可以智能地识别图像的前景和背景,并根据提示词替换背景,同时保持前景对象不变。
用于替换背景的提示词
原始图像文件
DEFAULT渲染速度选项,可选 TURBO, DEFAULT, QUALITY
1单次出图数量,范围 1-8
风格参考图片,可用于风格引导
随机种子,范围:0-2147483647
AUTO提示词增强选项,可用参数:AUTO, ON, OFF
AUTO生成图像的风格类型,可选 AUTO, GENERAL, REALISTIC, DESIGN
调用示例
import requests
import os
data = {
"prompt": "bird playing with a cat in the snow, pixel art style",
"rendering_speed": "QUALITY",
"num_images": 1,
"seed": 1,
# no "aspect_ratio"
"magic_prompt": "AUTO",
"style_type": "AUTO",
# no "negative_prompt"
}
# 原图 - 必填
source_image_path = "yourpath/image.png"
if not os.path.exists(source_image_path):
raise FileNotFoundError(f"源图片未找到:{source_image_path}")
# initialize files parameter
files = None
# 样式参考图路径
style_reference_path = "yourpath/reference-image.png"
use_reference_image = True
# 准备文件上传
with open(source_image_path, "rb") as image_file:
if use_reference_image and os.path.exists(style_reference_path):
# 如果使用参考图片且文件存在,则设置 files 参数
files = {
"image": image_file,
"style_reference_images": open(style_reference_path, "rb"),
}
else:
if use_reference_image:
print(f"警告:样式参考图片未找到:{style_reference_path}")
files = {
"image": image_file,
}
response = requests.post(
"https://camel.kr777.top/ideogram/v1/ideogram-v3/replace-background",
headers={
"Api-Key": "sk-***" # 换成你在 CaMeL AI 生成的密钥
},
data=data,
files=files
)
print(response.json())
# save output image to file
response_json = response.json()
if response.ok and 'data' in response_json and len(response_json['data']) > 0:
image_data = response_json['data'][0]['url'] # 正确获取图片 URL
image_response = requests.get(image_data)
if image_response.ok:
with open('output.png', 'wb') as f:
f.write(image_response.content)
print("图片已保存到 output.png")
else:
print(f"获取图片失败:{image_response.status_code}")
else:
print("API 请求失败或返回数据中没有图片")
print(f"错误详情:{response_json}")更多可选参数可参考 Ideogram AI 官方指南
💰 V3 计价
| Ideogram 模型 | Generate | Remix | Edit | Reframe | Replace BG |
|---|---|---|---|---|---|
| 3.0 Turbo | US $0.03 | US $0.03 | US $0.06 | US $0.06 | US $0.06 |
| 3.0 Default | US $0.06 | US $0.06 | US $0.06 | US $0.06 | US $0.06 |
| 3.0 Quality | US $0.09 | US $0.09 | US $0.09 | US $0.09 | US $0.09 |
V2-V1 接口说明
Ideogram AI V2-V1 绘图接口,文字绘制能力强劲,支持生图(generate)、混合(remix)、局部编辑(edit)、放大(upscale)和描述(describe)等。
- 混合: 在参考图的基础上,根据提示词进行重绘,生成新的图片。
- 编辑: 在参考图的基础上,根据提示词和蒙版进行局部编辑,生成新的图片。
- 放大: 将低分辨率的图片放大至高分辨率,会重绘细节(相似度和细节比例可控制)。
- 描述: 提示词反推,用于描述图片
支持的风格:
- AUTO:默认的自动选定
- GENERAL:通用
- REALISTIC:写实
- DESIGN:设计
- RENDER_3D:3D
- ANIME:动漫
- 注意风格参数
style_type仅适用于 V_2 及更高版本的模型。 - V3 支持即将上线
- 支持通过 CaMeL AI 官方接口调用或 Cherry Studio APP 使用,注意目前需要打开代理才能生图,后续会支持国内直连,敬请期待。
- Cherry Studio 暂时只开放了 Ideogram 绘图(generate)接口。
Generate
POST https://camel.kr777.top/ideogram/generate\ 根据给定提示词和可选参数同步生成图像。图像链接的有效期有限;如果你想保留图像,必须下载保存。
Request Parameters
生成图像的请求对象
用于生图的提示词
ASPECT_1_1用于图像生成的宽高比,决定了图像的分辨率。不能与分辨率参数同时使用。
可用比例:
- ASPECT_1_1
- ASPECT_3_1
- ASPECT_1_3
- ASPECT_3_2
- ASPECT_2_3
- ASPECT_4_3
- ASPECT_3_4
- ASPECT_16_9
- ASPECT_9_16
- SPECT_16_10
- ASPECT_10_16
V_2用于生成或编辑图像的模型。/generate 和 /remix 支持所有模型类型,但 /edit 仅支持 V_2 和 V_2_TURBO。
可用模型版本:
- V_1
- V_1_TURBO
- V_2
- V_2_TURBO
- V_2A
- V_2A_TURBO
AUTO提示词增强选项。可用参数:AUTO, ON, OFF
随机种子,范围:0-2147483647
AUTO生成图像时使用的风格类型;此参数仅适用于 V_2 及更高版本的模型,不应在 V_1 版本中指定。
可用风格:
- AUTO
- GENERAL
- REALISTIC
- DESIGN
- RENDER_3D
- ANIME
描述不想在图像中出现的内容。仅适用于模型版本 V_1、V_1_TURBO、V_2 和 V_2_TURBO。提示词中的描述优先级高于负面提示词中的描述。
1单次出图数量,范围 1-8
用于图像生成的分辨率(仅适用于模型版本 2.0,不能与 aspect_ratio 同时使用),以宽 x 高表示。如果未指定,则默认使用 aspect_ratio。
调用示例
import requests
import os
url = "https://camel.kr777.top/ideogram/generate"
payload = { "image_request": {
"prompt": "3D cartoon, An adorable white owl baby with tilted head, shiny amber eyes with highlight, fluffy body, standing on a trunk with moss and lots of glowing mushrooms, Close up, cinematic lighting, low angle, deep sense of depth. The background is a magical spring landscape, cute and esthetic, huge title design \"Always curious\"", #string 可选
"negative_prompt": "blurry, bad anatomy, watermark",
"aspect_ratio": "ASPECT_3_2", # 可选 include ASPECT_1_1(Default), ASPECT_3_2, ASPECT_2_3, ASPECT_4_3, ASPECT_3_4, ASPECT_16_9, ASPECT_9_16, SPECT_16_10, ASPECT_10_16
"model": "V_2",
"num_images": 2, #integer 可选 >=1 <=8 Defaults to 1
"magic_prompt_option": "AUTO", # string 可选 AUTO, ON, OFF
#"seed": "2" #integer 可选 >=0 <=2147483647
"style_type": "RENDER_3D" # string 可选 AUTO/GENERAL/REALISTIC/DESIGN/RENDER_3D/ANIME, 仅适用于 V_2 及以上版本
} }
headers = {
"Api-Key": os.getenv("CAMELAI_API_KEY"),
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.json())Response
Image(s) generated successfully.
{
"created": "2000-01-23T04:56:07Z",
"data": [
{
"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",
"is_image_safe": true,
"seed": 12345,
"url": "https://ideogram.ai/api/images/direct/8YEpFzHuS-S6xXEGmCsf7g",
"style_type": "REALISTIC"
}
]
}错误代码
400: Post Generate Image Request Bad Request Error401: Post Generate Image Request Unauthorized Error422: Post Generate Image Request Unprocessable Entity Error429: Post Generate Image Request Too Many Requests Error
Edit
POST https://camel.kr777.top/ideogram/edit
使用提供的蒙版同步编辑指定图像。蒙版标示出应被编辑的图像部分,而提示词和所选风格类型可进一步引导编辑方向。支持的图像格式包括 JPEG、PNG 和 WebP。图像链接的有效期有限;如果你想保留图像,必须下载保存。
Request Parameters
原始图像文件,支持 JPEG、PNG 和 WebP 格式
遮罩图片,必须符合以下要求:
- 仅包含黑色和白色像素,支持 RGB、RGBA 或灰度图像格式
- 与原图尺寸完全一致
- 黑色区域表示需要修改的部分,白色区域表示需要保持不变的部分
- 不能是纯白色
- 建议修改区域(黑色部分)面积至少占据图片的 10% 以上
用于局部编辑的提示词
用于生成或编辑图像的模型。/generate 和 /remix 支持所有模型类型,但 /edit 仅支持 V_2 和 V_2_TURBO。
可用模型版本:
- V_2
- V_2_TURBO
AUTO提示词增强选项。可用参数:AUTO, ON, OFF
1单次出图数量,范围 1-8
随机种子,范围:0-2147483647
AUTO生成图像时使用的风格类型;此参数仅适用于 V_2 及更高版本的模型。
可用风格:
- AUTO
- GENERAL
- REALISTIC
- DESIGN
- RENDER_3D
- ANIME
调用示例
import requests
import os
url = "https://camel.kr777.top/ideogram/eidt"
files = {
"image_file": open('<file1>', 'rb'), # 必须
"mask": "open('<file1>', 'rb')" # 必须
}
payload = {
"prompt": "\"prompt\"", # 必须
"model": "V_2", # 必须,only supported for V_2 and V_2_TURBO.
"magic_prompt_option": ,
"num_images":1, # integer 可选 >=1 <=8 Defaults to 1
"seed": , # integer 可选 >=0 <=2147483647
"style_type":
16}
headers = {"Api-Key": os.getenv("CAMELAI_API_KEY")}
response = requests.post(url, data=payload, files=files, headers=headers)
print(response.json()
# close file
files["image_file"].close()
files["mask"].close()Response
Image edits generated successfully.
{
"created": "2000-01-23T04:56:07Z",
"data": [
{
"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",
"is_image_safe": true,
"seed": 12345,
"url": "https://ideogram.ai/api/images/direct/8YEpFzHuS-S6xXEGmCsf7g",
"style_type": "REALISTIC"
}
]
}错误代码
400: Post Edit Image Request Bad Request Error401: Post Edit Image Request Unauthorized Error422: Post Edit Image Request Unprocessable Entity Error429: Post Edit Image Request Too Many Requests Error
Remix
POST https://camel.kr777.top/ideogram/remix
根据给定提示词和可选参数来融合提供的图像。输入图像会在重混前裁剪至所选宽高比。支持的图像格式包括 JPEG、PNG 和 WebP。图像链接的有效期有限;如果你想保留图像,必须下载保存。
Request Parameters
使用提供的图像和提示词生成新图像的请求,提供的图像会被裁剪以匹配所选的输出宽高比。
用于生成图像的提示词
ASPECT_1_1用于图像生成的宽高比,决定了图像的分辨率。不能与分辨率参数同时使用。
可用比例:
- ASPECT_1_1
- ASPECT_3_1
- ASPECT_1_3
- ASPECT_3_2
- ASPECT_2_3
- ASPECT_4_3
- ASPECT_3_4
- ASPECT_16_9
- ASPECT_9_16
- SPECT_16_10
- ASPECT_10_16
50参考图权重,范围:1-100
V_2用于生成或编辑图像的模型。/generate 和 /remix 支持所有模型类型,但 /edit 仅支持 V_2 和 V_2_TURBO。
描述不想在图像中出现的内容。仅适用于模型版本 V_1、V_1_TURBO、V_2 和 V_2_TURBO。提示词中的描述优先级高于负面提示词中的描述。
AUTO提示词增强选项。可用参数:AUTO, ON, OFF
1单次出图数量,范围:1-8
用于图像生成的分辨率(仅适用于模型版本 2.0,不能与 aspect_ratio 同时使用),以宽 x 高表示。如果未指定,则默认使用 aspect_ratio。
随机种子,范围:0-2147483647
AUTO生成图像的风格类型;仅适用于 V_2 及以上版本的模型,不应在 V_1 版本中指定。
可用风格:
- AUTO
- GENERAL
- REALISTIC
- DESIGN
- RENDER_3D
- ANIME
原始图像文件,支持 JPEG、PNG 和 WebP 格式
调用示例
import requests
import os
url = "https://camel.kr777.top/ideogram/remix"
files = { "image_file": open('<file1>', 'rb') }
payload = {"image_request": '''{
"prompt": "watercolor",
"aspect_ratio": "ASPECT_10_16",
"image_weight": 50,
"magic_prompt_option": "ON",
"model": "V_2"
}'''}
headers = {"Api-Key": os.getenv("CAMELAI_API_KEY")}
response = requests.post(url, data=payload, files=files, headers=headers)
print(response.json())Response
Image(s) generated successfully.
{
"created": "2000-01-23T04:56:07Z",
"data": [
{
"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",
"is_image_safe": true,
"seed": 12345,
"url": "https://ideogram.ai/api/images/direct/8YEpFzHuS-S6xXEGmCsf7g",
"style_type": "REALISTIC"
}
]
}错误代码
400: Post Remix Image Request Bad Request Error401: Post Remix Image Request Unauthorized Error422: Post Remix Image Request Unprocessable Entity Error429: Post Remix Image Request Too Many Requests Error
Upscale
POST https://camel.kr777.top/ideogram/upscale
使用可选提示词同步放大提供的图像(超分)。支持的图像格式包括 JPEG、PNG 和 WebP。图像链接的有效期有限;如果你想保留图像,必须下载保存。
Request Parameters
请求对象,用于使用可选提示词放大提供的图像
可选的提示词,用于引导放大过程
50相似度,范围:1-100
50细节,范围:1-100
AUTO提示词增强选项。可用参数:AUTO, ON, OFF
1生成数量,范围:1-8
随机种子,范围:0-2147483647
原始图像文件,支持 JPEG、PNG 和 WebP 格式
调用示例
import requests
import os
url = "https://camel.kr777.top/ideogram/upscale"
files = { "image_file": open('<file1>', 'rb') }
payload = { "image_request": "{}" }
headers = {"Api-Key": os.getenv("CAMELAI_API_KEY")}
response = requests.post(url, data=payload, files=files, headers=headers)
print(response.json())Response
Image(s) generated successfully.
{
"created": "2000-01-23T04:56:07Z",
"data": [
{
"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",
"is_image_safe": true,
"seed": 12345,
"url": "https://ideogram.ai/api/images/direct/8YEpFzHuS-S6xXEGmCsf7g",
"style_type": "REALISTIC"
}
]
}错误代码
400: Post Upscale Image Request Bad Request Error401: Post Upscale Image Request Unauthorized Error422: Post Upscale Image Request Unprocessable Entity Error429: Post Upscale Image Request Too Many Requests Error
Describe
POST https://camel.kr777.top/ideogram/describe
对上传的图像进行描述分析。支持的图像格式包括 JPEG、PNG 和 WebP。
Request Parameters
需要描述的图像文件,支持 JPEG、PNG 和 WebP 格式
调用示例
import requests
import os
url = "https://camel.kr777.top/ideogram/describe"
files = { "image_file": open('<file1>', 'rb') }
headers = {"Api-Key": os.getenv("CAMELAI_API_KEY")}
response = requests.post(url, files=files, headers=headers)
print(response.json())
# close file
files["image_file"].close()Response
Description(s) created successfully.
{
"descriptions": [
{
"text": "A meticulously illustrated cat with striped patterns, sitting upright. The cat's eyes are a captivating shade of yellow, and it appears to be gazing intently at something. The background consists of abstract, swirling patterns in shades of black, white, and beige, creating an almost fluid or wavy appearance. The cat is positioned in the foreground, with the background elements fading into the distance, giving a sense of depth to the image."
},
{
"text": "A meticulously illustrated cat with striped patterns, sitting upright. The cat's eyes are a captivating shade of yellow, and it appears to be gazing intently at something. The background consists of abstract, swirling patterns in shades of black, white, and beige, creating an almost fluid or wavy appearance. The cat is positioned in the foreground, with the background elements fading into the distance, giving a sense of depth to the image."
}
]
}错误代码
400: Post Describe Request Bad Request Error422: Post Describe Request Unprocessable Entity Error429: Post Describe Request Too Many Requests Error
💰 V2 & V1 计价
图像生成
| 型号 | 功能 | 每张图片费用 |
|---|---|---|
| 2a | 文字生图,或文字 + 参考图生图 | US $0.04 |
| 2a Turbo | 文字生图,或文字 + 参考图生图(更快速但质量略低) | US $0.025 |
| 2.0 | 文字生图,或文字 + 参考图生图 | US $0.08 |
| 2.0 Turbo | 文字生图,或文字 + 参考图生图(更快速但质量略低) | US $0.05 |
| 1.0 | 文字生图,或文字 + 参考图生图 | US $0.06 |
| 1.0 Turbo | 文字生图,或文字 + 参考图生图(更快速但质量略低) | US $0.02 |
图像编辑
| 型号 | 功能 | 每张图片费用 |
|---|---|---|
| 2.0 Edit | 通过文字提示、参考图片和二进制蒙版重新生成图像 | US $0.08 |
| 2.0 Turbo Edit | 通过文字提示、参考图片和二进制蒙版重新生成图像(更快速但质量略低) | US $0.05 |
图像增强
| 型号 | 功能 | 每张图片费用 |
|---|---|---|
| Upscale | 将参考图片分辨率提升至 2 倍,并可能增强图片效果 | US $0.06 |
更多详情可见官方文档