PixMind Docs
API ReferenceImage ModelsSeedream 5.0 Pro

Seedream 5.0 Pro Image Generation

Generate commercial images with Seedream 5.0 Pro through the PixMind API.

Commercial image generation and editing with strong composition, detail, and reference consistency.

Provider

ByteDance

Model ID

seedream-5.0-pro

Endpoint

POST /api-platform/v1/generations

Model notes

  • The public route currently exposes 1K and 2K pricing tiers.

Request parameters

ParameterTypeRequiredDescription
modelstringYes

Stable PixMind model ID. Use `seedream-5.0-pro`.

Allowed values: seedream-5.0-pro

promptstringYes

Natural-language generation or editing instructions.

resolutionstringNo

Output resolution tier. This field affects request pricing.

Allowed values: 1K, 2K

Default: 1K

aspectRatiostringNo

Requested output aspect ratio.

Allowed values: 1:1, 4:3, 3:4, 16:9, 9:16, 3:2, 2:3, 21:9

Default: 1:1

referenceImagesstring[] (URI)No

Reference image URLs used for editing, composition, subject, or style guidance.

Request example

cURL
curl https://aihub-admin.aimix.pro/api-platform/v1/generations \
  -H "Authorization: Bearer $PIXMIND_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "seedream-5.0-pro",
  "prompt": "A refined editorial product photograph with controlled reflections",
  "resolution": "2K",
  "aspectRatio": "3:4",
  "referenceImages": [
    "https://example.com/product.png"
  ]
}'
JavaScript
const response = await fetch("https://aihub-admin.aimix.pro/api-platform/v1/generations", {
  method: "POST",
  headers: {
    "Authorization": `Bearer ${process.env.PIXMIND_API_KEY}`,
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
  "model": "seedream-5.0-pro",
  "prompt": "A refined editorial product photograph with controlled reflections",
  "resolution": "2K",
  "aspectRatio": "3:4",
  "referenceImages": [
    "https://example.com/product.png"
  ]
})
});

const task = await response.json();

Accepted task response

Generation is asynchronous. Save taskId and poll GET /api-platform/v1/tasks/{taskId} until status is ready or failed.

200 OK
{
  "code": 1000,
  "data": {
    "id": "img_44160",
    "taskId": 44160,
    "type": "image",
    "model": "seedream-5.0-pro",
    "status": "processing"
  }
}

API pricing

ConfigurationPrice
1K output$0.060 / image
2K output$0.080 / image

API pricing uses the apiPlatform role and is separate from PixMind Studio credits. The accepted task response is the final pricing snapshot.