seedream-5.0-lite/image-to-image
seedream-5.0-lite/image-to-image
छविByteDanceSeedream 5.0 Liteimage-to-image

字节最新一代的图像生成模型

प्रमाणीकरण

Base URL
https://api.dreamtoai.com
Authorization
Authorization: Bearer YOUR_API_KEY
Content-Type
application/json
मॉडल नाम (model)
seedream-5.0-lite/image-to-image

इंटीग्रेशन प्रोटोकॉल

यह प्रोटोकॉल क्यों चुनें

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

एंडपॉइंट URL
POST/v1/jobs
Authorization: Bearer YOUR_API_KEYContent-Type: application/json

रिक्वेस्ट / रिस्पॉन्स JSON

रिक्वेस्ट
{
  "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": {}
  }
}
प्रतिक्रिया
{
  "id": "job_example",
  "object": "job",
  "status": "processing",
  "model": "seedream-5.0-lite/image-to-image",
  "created": 1710000000,
  "request_id": "req_example"
}

रिक्वेस्ट / रिस्पॉन्स फ़ील्ड

रिक्वेस्ट फ़ील्ड
फ़ील्डप्रकारआवश्यक
promptstringY
imagearrayN
sizestringN
sequential_image_generationenumN
sequential_image_generation_optionsobjectN
toolsarrayN
streambooleanN
guidance_scalenumberN
output_formatenumN
response_formatenumN
watermarkbooleanN
optimize_prompt_optionsobjectN
रिस्पॉन्स फ़ील्ड
फ़ील्डप्रकारआवश्यक
output.images[]imageN

कोड उदाहरण

cURLrequest.sh
curl -X POST "https://api.dreamtoai.com/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": {}
  }
}'

# स्टेटस जाँचने के लिए cURL
# job_example को सबमिट रिस्पॉन्स से मिले task_id से बदलें।
curl -X GET "https://api.dreamtoai.com/v1/jobs/job_example" \
  -H "Authorization: Bearer YOUR_API_KEY"