curl --request POST \
--url https://toapis.com/v1/images/generations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "gemini-3-pro-image-preview",
"prompt": "未来城市的天际线,霓虹灯光",
"size": "16:9",
"n": 1,
"metadata": {
"resolution": "1K",
"orientation": "landscape"
}
}'
curl --request POST \
--url https://toapis.com/v1/images/generations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "gemini-3-pro-image-preview",
"prompt": "增强这张城市照片的色彩和细节",
"size": "16:9",
"n": 1,
"metadata": {
"resolution": "2K"
},
"image_urls": ["https://example.com/city.jpg"]
}'
import requests
response = requests.post(
"https://toapis.com/v1/images/generations",
headers={
"Authorization": "Bearer your-ToAPIs-key",
"Content-Type": "application/json"
},
json={
"model": "gemini-3-pro-image-preview",
"prompt": "未来城市的天际线,霓虹灯光",
"size": "16:9",
"n": 1,
"metadata": {
"resolution": "1K",
"orientation": "landscape"
}
}
)
task = response.json()
print(f"任务 ID: {task['id']}")
print(f"状态: {task['status']}")
import requests
response = requests.post(
"https://toapis.com/v1/images/generations",
headers={
"Authorization": "Bearer your-ToAPIs-key",
"Content-Type": "application/json"
},
json={
"model": "gemini-3-pro-image-preview",
"prompt": "增强这张城市照片的色彩和细节",
"size": "16:9",
"n": 1,
"metadata": {
"resolution": "2K"
},
"image_urls": ["https://example.com/city.jpg"]
}
)
task = response.json()
print(f"任务 ID: {task['id']}")
print(f"状态: {task['status']}")
const response = await fetch('https://toapis.com/v1/images/generations', {
method: 'POST',
headers: {
'Authorization': 'Bearer your-ToAPIs-key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'gemini-3-pro-image-preview',
prompt: '未来城市的天际线,霓虹灯光',
size: '16:9',
n: 1,
metadata: {
resolution: '1K',
orientation: 'landscape'
}
})
});
const task = await response.json();
console.log(`任务 ID: ${task.id}`);
console.log(`状态: ${task.status}`);
const response = await fetch('https://toapis.com/v1/images/generations', {
method: 'POST',
headers: {
'Authorization': 'Bearer your-ToAPIs-key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'gemini-3-pro-image-preview',
prompt: '增强这张城市照片的色彩和细节',
size: '16:9',
n: 1,
metadata: {
resolution: '2K'
},
image_urls: ['https://example.com/city.jpg']
})
});
const task = await response.json();
console.log(`任务 ID: ${task.id}`);
console.log(`状态: ${task.status}`);
{
"id": "task_img_abc123def456",
"object": "generation.task",
"model": "gemini-3-pro-image-preview",
"status": "queued",
"progress": 0,
"created_at": 1703884800,
"metadata": {}
}
Gemini 3 Pro Image
Gemini 3 Pro Image 普通版 图像生成
Gemini 3 Pro Image 普通版 支持文生图和图生图, 最多 6 张参考图.
POST
/
v1
/
images
/
generations
curl --request POST \
--url https://toapis.com/v1/images/generations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "gemini-3-pro-image-preview",
"prompt": "未来城市的天际线,霓虹灯光",
"size": "16:9",
"n": 1,
"metadata": {
"resolution": "1K",
"orientation": "landscape"
}
}'
curl --request POST \
--url https://toapis.com/v1/images/generations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "gemini-3-pro-image-preview",
"prompt": "增强这张城市照片的色彩和细节",
"size": "16:9",
"n": 1,
"metadata": {
"resolution": "2K"
},
"image_urls": ["https://example.com/city.jpg"]
}'
import requests
response = requests.post(
"https://toapis.com/v1/images/generations",
headers={
"Authorization": "Bearer your-ToAPIs-key",
"Content-Type": "application/json"
},
json={
"model": "gemini-3-pro-image-preview",
"prompt": "未来城市的天际线,霓虹灯光",
"size": "16:9",
"n": 1,
"metadata": {
"resolution": "1K",
"orientation": "landscape"
}
}
)
task = response.json()
print(f"任务 ID: {task['id']}")
print(f"状态: {task['status']}")
import requests
response = requests.post(
"https://toapis.com/v1/images/generations",
headers={
"Authorization": "Bearer your-ToAPIs-key",
"Content-Type": "application/json"
},
json={
"model": "gemini-3-pro-image-preview",
"prompt": "增强这张城市照片的色彩和细节",
"size": "16:9",
"n": 1,
"metadata": {
"resolution": "2K"
},
"image_urls": ["https://example.com/city.jpg"]
}
)
task = response.json()
print(f"任务 ID: {task['id']}")
print(f"状态: {task['status']}")
const response = await fetch('https://toapis.com/v1/images/generations', {
method: 'POST',
headers: {
'Authorization': 'Bearer your-ToAPIs-key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'gemini-3-pro-image-preview',
prompt: '未来城市的天际线,霓虹灯光',
size: '16:9',
n: 1,
metadata: {
resolution: '1K',
orientation: 'landscape'
}
})
});
const task = await response.json();
console.log(`任务 ID: ${task.id}`);
console.log(`状态: ${task.status}`);
const response = await fetch('https://toapis.com/v1/images/generations', {
method: 'POST',
headers: {
'Authorization': 'Bearer your-ToAPIs-key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'gemini-3-pro-image-preview',
prompt: '增强这张城市照片的色彩和细节',
size: '16:9',
n: 1,
metadata: {
resolution: '2K'
},
image_urls: ['https://example.com/city.jpg']
})
});
const task = await response.json();
console.log(`任务 ID: ${task.id}`);
console.log(`状态: ${task.status}`);
{
"id": "task_img_abc123def456",
"object": "generation.task",
"model": "gemini-3-pro-image-preview",
"status": "queued",
"progress": 0,
"created_at": 1703884800,
"metadata": {}
}
国内用户请注意: 中国大陆用户请使用
https://toapis.cn 作为接口地址(Base URL)。文档示例中的 https://toapis.com 请替换为 https://toapis.cn。版本选择
参考图数量指输入图片总数, 不代表输出图片数量. 三个版本使用不同的模型 ID, 请按对应页面的参数和示例调用.当前版本
使用model: "gemini-3-pro-image-preview" 选择普通版, 支持文生图和最多 6 张参考图的图生图或图像编辑.
适合文生图和不超过 6 张参考图的编辑. 需要更多参考图时, 可查看上方 VIP 或 Official 文档.
请求异步执行, 提交成功后通过任务 ID 查询结果.
image_urls 仅支持图片 URL, 不直接接收 base64. 请先使用 上传图片接口 获取可访问的 URL.认证
string
必填
所有接口均需要使用 Bearer Token 进行认证获取 API Key:访问 API Key 管理页面 获取您的 API Key使用时在请求头中添加:
Authorization: Bearer YOUR_API_KEY
请求参数
string
默认值:"gemini-3-pro-image-preview"
必填
图像生成模型名称可用模型别名:
nano-banana-pro示例:"gemini-3-pro-image-preview"string
必填
图像生成的文本描述上游模型输入上限为 65,536 tokens。ToAPIs 不额外设置 1000 字符限制。
string
图像生成的尺寸比例支持的格式:
- 比例:
1:1,2:3,3:2,3:4,4:3,4:5,5:4,9:16,16:9,21:9
integer
默认值:1
生成图像的数量固定为 1⚠️ 注意: 必须是纯数字(如
1),不要加引号,否则会报错object
object[]
响应字段
string
任务唯一标识符,用于查询任务状态
string
对象类型,固定为
generation.taskstring
使用的模型名称
string
任务状态
queued- 排队等待处理in_progress- 处理中completed- 成功完成failed- 失败
integer
任务进度百分比(0-100)
integer
任务创建时间戳(Unix 时间戳)
object
任务元数据
curl --request POST \
--url https://toapis.com/v1/images/generations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "gemini-3-pro-image-preview",
"prompt": "未来城市的天际线,霓虹灯光",
"size": "16:9",
"n": 1,
"metadata": {
"resolution": "1K",
"orientation": "landscape"
}
}'
curl --request POST \
--url https://toapis.com/v1/images/generations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "gemini-3-pro-image-preview",
"prompt": "增强这张城市照片的色彩和细节",
"size": "16:9",
"n": 1,
"metadata": {
"resolution": "2K"
},
"image_urls": ["https://example.com/city.jpg"]
}'
import requests
response = requests.post(
"https://toapis.com/v1/images/generations",
headers={
"Authorization": "Bearer your-ToAPIs-key",
"Content-Type": "application/json"
},
json={
"model": "gemini-3-pro-image-preview",
"prompt": "未来城市的天际线,霓虹灯光",
"size": "16:9",
"n": 1,
"metadata": {
"resolution": "1K",
"orientation": "landscape"
}
}
)
task = response.json()
print(f"任务 ID: {task['id']}")
print(f"状态: {task['status']}")
import requests
response = requests.post(
"https://toapis.com/v1/images/generations",
headers={
"Authorization": "Bearer your-ToAPIs-key",
"Content-Type": "application/json"
},
json={
"model": "gemini-3-pro-image-preview",
"prompt": "增强这张城市照片的色彩和细节",
"size": "16:9",
"n": 1,
"metadata": {
"resolution": "2K"
},
"image_urls": ["https://example.com/city.jpg"]
}
)
task = response.json()
print(f"任务 ID: {task['id']}")
print(f"状态: {task['status']}")
const response = await fetch('https://toapis.com/v1/images/generations', {
method: 'POST',
headers: {
'Authorization': 'Bearer your-ToAPIs-key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'gemini-3-pro-image-preview',
prompt: '未来城市的天际线,霓虹灯光',
size: '16:9',
n: 1,
metadata: {
resolution: '1K',
orientation: 'landscape'
}
})
});
const task = await response.json();
console.log(`任务 ID: ${task.id}`);
console.log(`状态: ${task.status}`);
const response = await fetch('https://toapis.com/v1/images/generations', {
method: 'POST',
headers: {
'Authorization': 'Bearer your-ToAPIs-key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'gemini-3-pro-image-preview',
prompt: '增强这张城市照片的色彩和细节',
size: '16:9',
n: 1,
metadata: {
resolution: '2K'
},
image_urls: ['https://example.com/city.jpg']
})
});
const task = await response.json();
console.log(`任务 ID: ${task.id}`);
console.log(`状态: ${task.status}`);
{
"id": "task_img_abc123def456",
"object": "generation.task",
"model": "gemini-3-pro-image-preview",
"status": "queued",
"progress": 0,
"created_at": 1703884800,
"metadata": {}
}
查询结果
提交响应中的id 是任务 ID. 使用 图片任务查询接口 获取状态和最终图片.
任务查询和 Webhook 回调 沿用通用异步图片接口约定.