外观
Seedream 5.0
Seedream 5.0 是字节跳动在 Pixapi 上的图片系列。在 Pro 与 Lite 之间切换通常只需修改 model。
API 形式
| 操作 | Endpoint | 模式 |
|---|---|---|
| 图片生成 | POST /v1/images/generations | 同步 |
| 图片生成任务 | POST /v1/async/images/generations | 异步 |
| 图片编辑 | POST /v1/images/edits | 同步 |
| 图片编辑任务 | POST /v1/async/images/edits | 异步 |
模型 id
| 模型 id | 适合 |
|---|---|
seedream-5-0-pro | 更高质量的 Seedream 生成与编辑 |
seedream-5-0-lite | 更低成本的 Seedream 工作流 |
价格
| 模型 id | 每张积分 |
|---|---|
seedream-5-0-pro | 4 |
seedream-5-0-lite | 3 |
请求字段
| 字段 | 类型 | 必填 | 说明 |
|---|---|---|---|
model | string | 是 | 使用 seedream-5-0-pro 或 seedream-5-0-lite。模型 ID 区分大小写。 |
prompt | string | 是 | 提示词,最长 2,000 字符。 |
image | string | string[] | 编辑时必填 | 公网图片 URL,或 URL 数组。 |
n | integer | 否 | 输出数量,默认 1,最大 9。 |
size | string | 否 | 上游支持的输出尺寸,将按原值透传。 |
quality | string | 否 | 可选的上游质量参数。 |
output_format | string | 否 | 上游支持时可传 png 等输出格式。 |
providerOptions | object | 否 | 其他供应商扩展字段。 |
示例
bash
curl https://api.pixapi.ai/v1/images/generations \
-H "Authorization: Bearer $PIXAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"seedream-5-0-pro","prompt":"暖灰背景上的简洁杂志风产品照片","n":1,"size":"1024x1024"}'py
import os
import requests
response = requests.post(
"https://api.pixapi.ai/v1/images/generations",
headers={
"Authorization": f"Bearer {os.environ['PIXAPI_KEY']}",
"Content-Type": "application/json",
},
json={
"model": "seedream-5-0-pro",
"prompt": "暖灰背景上的简洁杂志风产品照片",
"n": 1,
"size": "1024x1024"
},
)
response.raise_for_status()
print(response.json())js
const response = await fetch('https://api.pixapi.ai/v1/images/generations', {
method: 'POST',
headers: {
Authorization: `Bearer ${process.env.PIXAPI_KEY}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
"model": "seedream-5-0-pro",
"prompt": "暖灰背景上的简洁杂志风产品照片",
"n": 1,
"size": "1024x1024"
}),
});
if (!response.ok) {
throw new Error(await response.text());
}
console.log(await response.json());go
package main
import (
"bytes"
"fmt"
"io"
"net/http"
"os"
)
func main() {
body := []byte(`{
"model": "seedream-5-0-pro",
"prompt": "暖灰背景上的简洁杂志风产品照片",
"n": 1,
"size": "1024x1024"
}`)
req, err := http.NewRequest(
"POST",
"https://api.pixapi.ai/v1/images/generations",
bytes.NewBuffer(body),
)
if err != nil {
panic(err)
}
req.Header.Set("Authorization", "Bearer "+os.Getenv("PIXAPI_KEY"))
req.Header.Set("Content-Type", "application/json")
resp, err := http.DefaultClient.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
result, _ := io.ReadAll(resp.Body)
fmt.Println(string(result))
}编辑图片
json
{
"model": "seedream-5-0-pro",
"prompt": "把背景替换为极简摄影棚",
"image": "https://example.com/input.png",
"n": 1
}异步请求与任务轮询请参阅异步媒体任务。
统一响应结构见 API 参考。
