Public Model / seedream

Seedream 5.0 Pro API pricing

Image creation and editing at 1K or 2K with PNG or JPEG output.

Availability
Available
Tasks
Create Image, Edit Image
Published rates from
$0.035

Request calculator

Configure Seedream 5.0 Pro

Controls and rates come directly from the checked public catalog.

Interactive calculator

Price a direct generation

Choose a task, configure its inputs, and see the current catalog price.

Step 1

Choose a generation type

Step 2

Configure generation

Model
Seedream 5.0 Pro
Resolution1K
Input images0
Outputs1

Step 3

Reference total

$0.0351 output at $0.035 each
Generation
$0.0351 image x $0.035
Input media
$0.000 images x $0.0025
Minimum request
$0.035
Get started

The API estimate for your exact request is authoritative before paid work starts.

Best fit

Use Seedream 5.0 Pro when workflows need explicit file-format control and up to ten source images.

Use cases

  • Format-controlled campaign assets
  • Multi-reference image edits

Know before building

  • Output resolution is limited to 1K or 2K.

Generated contract

Tasks, controls, and rates

Published rates

image.create
Varies by resolution, input images
$0.035 / image$0.035 minimum
image.edit
Varies by resolution, input images
$0.035 / image$0.035 minimum

Request controls

image.createAspect ratio1:1 · 4:3 · 3:4 · 16:9 · 9:16 · 2:3 · 3:2 · 21:9
image.createOutput formatpng · jpeg
image.createPromptText input
image.createReference imagesUp to 10 items
image.createResolution1K · 2K
image.editAspect ratio1:1 · 4:3 · 3:4 · 16:9 · 9:16 · 2:3 · 3:2 · 21:9
image.editImagesUp to 10 items
image.editOutput formatpng · jpeg
image.editPromptText input
image.editResolution1K · 2K

Lifecycle: queued -> running -> succeeded -> failed -> cancelled -> manual_review

Output fields: assets

Runnable examples

Estimate first, then create

Both requests use the same normalized task, model, and input payload. Creating work requires an API key and idempotency key.

1. Estimate

curl https://api.entirefeed.com/v1/estimate \
  -X POST \
  -H "Content-Type: application/json" \
  -d '{
  "task": "image.create",
  "model": "seedream-5-pro",
  "input": {
    "aspect_ratio": "1:1",
    "output_format": "png",
    "resolution": "1K",
    "prompt": "A refined product still with soft daylight and precise brand colors"
  }
}'

2. Create

curl https://api.entirefeed.com/v1/generations \
  -X POST \
  -H "Authorization: Bearer $ENTIREFEED_API_KEY" \
  -H "Idempotency-Key: seedream-5-pro-example-001" \
  -H "Content-Type: application/json" \
  -d '{
  "task": "image.create",
  "model": "seedream-5-pro",
  "input": {
    "aspect_ratio": "1:1",
    "output_format": "png",
    "resolution": "1K",
    "prompt": "A refined product still with soft daylight and precise brand colors"
  }
}'