Seedance 1.0

Generate 5-10 second videos at up to 720p using Seedance 1.0 through VicSee API. Budget-friendly video generation for content creators. 28-100 credits.

Try it now: Use the Seedance 1.0 Generator to create affordable AI videos.

Pricing

VariantCreditsPrice (Pro Yearly)Price (Pro Monthly)
480p / 5s28$0.17$0.34
480p / 10s48$0.29$0.58
720p / 5s50$0.30$0.60
720p / 10s100$0.60$1.20

Note: Seedance 1.0 does not support audio generation. Credits are deducted only on successful generation.

Endpoint

POST https://vicsee.com/api/v1/generate

See Authentication for API key setup.


Text to Video

Generate videos from text descriptions.

Request Parameters

ParameterTypeRequiredDescription
modelstringYesseedance-1-0-text-to-video
input.promptstringYesVideo description (max 10000 chars)
input.durationnumberNo5 or 10 seconds (default: 5)
input.resolutionstringNo480p, 720p (default: 480p)
input.aspect_ratiostringNo16:9, 9:16, 1:1, 4:3, 3:4, 21:9 (default: 16:9)

Example Request

curl -X POST https://vicsee.com/api/v1/generate \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "seedance-1-0-text-to-video",
    "input": {
      "prompt": "A boy rides a bike down a golden-lit rural road at sunset",
      "duration": 5,
      "resolution": "720p",
      "aspect_ratio": "16:9"
    }
  }'

Image to Video

Animate a reference image into video.

Request Parameters

ParameterTypeRequiredDescription
modelstringYesseedance-1-0-image-to-video
input.promptstringYesDescription of the animation
input.image_urlsstring[]YesArray with 1 reference image
input.durationnumberNo5 or 10 seconds (default: 5)
input.resolutionstringNo480p, 720p (default: 480p)

Example Request

curl -X POST https://vicsee.com/api/v1/generate \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "seedance-1-0-image-to-video",
    "input": {
      "prompt": "The flower slowly blooms and petals unfold in the morning light",
      "image_urls": ["https://example.com/flower.jpg"],
      "duration": 5,
      "resolution": "720p"
    }
  }'

Response

Success (200)

{
  "success": true,
  "data": {
    "id": "task_abc123xyz",
    "model": "seedance-1-0-text-to-video",
    "status": "pending",
    "creditsUsed": 50,
    "creditsRemaining": 950,
    "createdAt": "2026-02-11T12:00:00Z"
  }
}

Poll for completion using Tasks API.

Task Complete

{
  "taskId": "task_abc123xyz",
  "status": "completed",
  "output": {
    "url": "https://cdn.vicsee.com/outputs/video_xyz.mp4",
    "duration": 5,
    "format": "mp4"
  }
}