1. Seedream
liangxin
  • Market
  • Image Models
    • Seedream
      • Seedream4.5 - Text to Image
        POST
      • Seedream4.5 - Edit Image
        POST
      • Seedream5.0 Lite - Text to Image
        POST
      • Seedream5.0 Lite - Edit Image
        POST
    • Z-image
      • Z-Image
    • Google
      • Google - Gemini 2.5 Flash Image Preview
      • Google - Nano Banana Pro
      • Google - Nano Banana Pro Flash
      • Google - imagen4-fast
      • Google - imagen4-ultra
    • Flux-2
      • Flux-2 - Pro Text to Image
  • Video Models
    • Kling
      • Kling 3 Pro - Generate Video
  • Get Task Details
    GET
  1. Seedream

Seedream4.5 - Edit Image

POST
/api/v1/jobs/createTask
Seedream 4.5 image editing with text guidance and up to 5 reference images.

Query Task Status#

After submitting a task, use the unified query endpoint to check progress and retrieve results:
Get Task Details
Learn how to query task status and retrieve generation results
For production use, we recommend using the callBackUrl parameter to receive automatic notifications when generation completes, while still keeping GET /api/v1/jobs/recordInfo polling as a fallback.

Related Resources#

Market Overview
Explore all available LiangXin image models
Task Status API
Query task state, failures, and final result URLs

Request

Header Params

Body Params application/jsonRequired

Examples

Responses

🟢200200 - Request successful
application/json
Task submitted successfully. Use data.taskId to query task progress or correlate callback events.
Body

🔴500500 - Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v1/jobs/createTask' \
--header 'Content-Type: application/json' \
--data-raw '{
  "model": "seedream-v4-5-edit",
  "callBackUrl": "https://your-domain.com/api/callback",
  "input": {
    "prompt": "Turn the reference product photo into a professional marketing poster with elegant typography",
    "reference_images": [
      "https://example.com/reference-image-1.jpg",
      "https://example.com/reference-image-2.jpg"
    ],
    "aspect_ratio": "square_1_1",
    "seed": 12345,
    "enable_safety_checker": true
  }
}'
Response Response Example
200 - 200 - Request successful
The task was accepted and can be queried by taskId.
{
  "code": 200,
  "msg": "success",
  "data": {
    "taskId": "task_seedream_45_edit_1765166238716"
  }
}
Modified at 2026-05-01 14:34:11
Previous
Seedream4.5 - Text to Image
Next
Seedream5.0 Lite - Text to Image
Built with