seedream-5.0-lite/image-to-image

seedream-5.0-lite/image-to-image
图像ByteDanceSeedream 5.0 Liteimage-to-image
字节最新一代的图像生成模型

Authentication

Base URL
https://host.docker.internal:8000
Authorization
Authorization: Bearer YOUR_API_KEY
Content-Type
application/json
Model name
seedream-5.0-lite/image-to-image

Integration protocols

Why this protocol

适合需要提交任务并轮询状态的图像、视频、音频生成工作流。

Endpoint
POST/v1/jobs
Authorization: Bearer YOUR_API_KEYContent-Type: application/json

Request / Response JSON

// REQUEST
{
  "model": "seedream-5.0-lite/image-to-image",
  "input": {
    "prompt": "一张国风插画,细节丰富,柔和光线",
    "image": [
      "https://example.com/reference.png"
    ],
    "size": "1024x1024",
    "sequential_image_generation": "disabled",
    "sequential_image_generation_options": {},
    "tools": [],
    "stream": false,
    "guidance_scale": 5,
    "output_format": "jpeg",
    "response_format": "url",
    "watermark": true,
    "optimize_prompt_options": {}
  }
}
// RESPONSE
{
  "id": "job_example",
  "object": "job",
  "status": "processing",
  "model": "seedream-5.0-lite/image-to-image",
  "created": 1710000000,
  "request_id": "req_example"
}

Request / Response schema

// INPUT SCHEMA
FieldTypeRequired
promptstringY
imagearrayN
sizestringN
sequential_image_generationenumN
sequential_image_generation_optionsobjectN
toolsarrayN
streambooleanN
guidance_scalenumberN
output_formatenumN
response_formatenumN
watermarkbooleanN
optimize_prompt_optionsobjectN
// RESPONSE SCHEMA
FieldTypeRequired
output.images[]imageN

Code examples

cURLrequest.sh
curl -X POST "https://host.docker.internal:8000/v1/jobs" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "model": "seedream-5.0-lite/image-to-image",
  "input": {
    "prompt": "一张国风插画,细节丰富,柔和光线",
    "image": [
      "https://example.com/reference.png"
    ],
    "size": "1024x1024",
    "sequential_image_generation": "disabled",
    "sequential_image_generation_options": {},
    "tools": [],
    "stream": false,
    "guidance_scale": 5,
    "output_format": "jpeg",
    "response_format": "url",
    "watermark": true,
    "optimize_prompt_options": {}
  }
}'

# Poll status cURL
# Replace job_example with the task_id returned by the submit call
curl -X GET "https://host.docker.internal:8000/v1/jobs/job_example" \
  -H "Authorization: Bearer YOUR_API_KEY"