Skip to main content
Back to API Platform

Seedance 2.5 Video Edit API

Edit or extend an existing video with Seedance 2.5. Replace a subject, add or remove objects, or continue a clip forward or backward, with up to 50 reference materials. Integrate this model via REST with endpoint docs, parameters, and code examples.

Video Generation
Img2Vid
Audio
Content moderation disabled
Credit Cost
3.5 credits/sec
Type
Video

API Endpoint

POST
/api/v1/models/seedance-2-5-video-edit/run

Test This Model

Run a real request through the API pipeline and inspect the exact input and output your integration will handle. Uses your credits like any API call; failed runs are refunded automatically.

Parameters

Input parameters accepted by this model

ParameterTypeDefault
mode
required
enum
edit
prompt
required
string
-
video_url
required
url
-
direction
enum
forward
duration
integer
-1
reference_images
array
-
reference_videos
array
-
reference_audios
array
-
resolution
enum
720p
generate_audio
boolean
true
thinking
boolean
false

See also

Related endpoints on this model — you may need a different apiId for a different operation (e.g. image edit vs generation).

Code Examples

Edit a clip — copy and paste to get started

bash
curl -X POST "https://pixeldojo.ai/api/v1/models/seedance-2-5-video-edit/run" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "mode": "edit",
    "video_url": "https://pixeldojo.ai/example.mp4",
    "prompt": "give the car a glossy red paint job"
  }'

Response Format

Submit Response (202 Accepted)

json
{
  "jobId": "job_abc123...",
  "status": "pending",
  "statusUrl": "https://pixeldojo.ai/api/v1/jobs/job_abc123...",
  "creditCost": 35,
  "creditsRemaining": 95,
  "expiresAt": "2026-08-08T19:39:45Z"
}

Completed Response

json
{
  "jobId": "job_abc123...",
  "status": "completed",
  "output": {
    "video": "https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.mp4"
  },
  "creditCost": 35,
  "expiresAt": "2026-08-08T19:39:45Z"
}