PixMind Docs
API ReferenceVideo ModelsSeedance 2.0 Pro Video Generation

Seedance 2.0 Pro Video Generation

Multi-reference video generation with coordinated characters, scenes, and motion through the PixMind API.

Multi-reference video generation with coordinated characters, scenes, motion, and optional audio.

Provider

ByteDance

Model ID

seedance-2.0-pro

Endpoint

POST /api-platform/v1/generations

Model notes

  • Reference video uploads support MP4 or MOV, 2-15 seconds each, up to three videos and 15 seconds total.
  • Reference mode currently accepts 480p or 720p source videos.

Request parameters

ParameterTypeRequiredDescription
modelstringYes

Stable PixMind model ID. Use `seedance-2.0-pro`.

Allowed values: seedance-2.0-pro

promptstringYes

Natural-language generation or editing instructions.

resolutionstringNo

Output video resolution. This field affects per-second pricing.

Allowed values: 480p, 720p, 1080p, 4K

Default: 720p

durationintegerNo

Requested clip duration in seconds.

Allowed values: 5, 10, 15

Default: 5

aspectRatiostringNo

Requested output aspect ratio.

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

Default: 16:9

imageUrlstring (URI)No

Starting image for image-to-video generation.

referenceImagesstring[] (URI)No

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

reference_videosstring[] (URI)No

Reference video URLs for character, scene, or motion guidance.

generateAudiobooleanNo

Generate synchronized audio when supported by the selected mode.

Allowed values: true, false

Default: true

enable_web_searchbooleanNo

Allow supported modes to use web context during prompt interpretation.

Allowed values: true, false

Default: false

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": "seedance-2.0-pro",
  "prompt": "Keep the character and product consistent across a three-shot commercial sequence",
  "duration": 10,
  "resolution": "720p",
  "aspectRatio": "16:9",
  "referenceImages": [
    "https://example.com/character.jpg",
    "https://example.com/product.jpg"
  ],
  "generateAudio": true
}'
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": "seedance-2.0-pro",
  "prompt": "Keep the character and product consistent across a three-shot commercial sequence",
  "duration": 10,
  "resolution": "720p",
  "aspectRatio": "16:9",
  "referenceImages": [
    "https://example.com/character.jpg",
    "https://example.com/product.jpg"
  ],
  "generateAudio": true
})
});

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": "video",
    "model": "seedance-2.0-pro",
    "status": "processing"
  }
}

API pricing

ConfigurationPrice
480p$0.072 / second
720p$0.176 / second
1080p$0.336 / second
4K$0.840 / second

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