DEV Community

Om Prakash
Om Prakash

Posted on • Originally published at pixelapi.dev

Seedance 1.5 Pro on PixelAPI — AI Video Generation (Text & Image to Video) in Under 2 Minutes

If you've used AI video generation APIs, you know the drill — submit a prompt, wait 10-15 minutes, hope for the best. We've been there too with our WAN 2.1 endpoint.

Today we're adding Seedance 1.5 Pro (by ByteDance) as a premium option. Same API, two choices now. And it supports both text-to-video and image-to-video.

What Changed

WAN 2.1 Seedance 1.5 Pro
Speed ~10-15 minutes ~2 minutes
Resolution 480p 720p / 1080p
Text-to-Video
Image-to-Video
Cost 135 credits ($0.135) 250 credits ($0.25)
Best for Budget batches Fast iteration, client work

Text-to-Video (API)

import requests

response = requests.post(
    "https://api.pixelapi.dev/v1/video/generate",
    headers={"Authorization": "Bearer YOUR_API_KEY"},
    json={
        "prompt": "A drone shot flying over a neon city at sunset",
        "model": "seedance-1.5"
    }
)
print(response.json())
# {"generation_id": "abc-123", "status": "processing", "credits_used": 250}
Enter fullscreen mode Exit fullscreen mode

Image-to-Video (NEW)

Upload a reference image and describe how you want it to move:

import requests

response = requests.post(
    "https://api.pixelapi.dev/v1/seedance/generate",
    headers={"Authorization": "Bearer YOUR_API_KEY"},
    files={"image": open("my_photo.jpg", "rb")},
    data={"prompt": "Camera slowly zooms in, the subject smiles and waves"}
)
print(response.json())
# {"generation_id": "def-456", "status": "processing", "credits_used": 250}
Enter fullscreen mode Exit fullscreen mode

This is useful when you want to animate a product photo, bring a still portrait to life, or create video from existing artwork.

Poll for Completion

status = requests.get(
    f"https://api.pixelapi.dev/v1/seedance/{generation_id}",
    headers={"Authorization": "Bearer YOUR_API_KEY"}
).json()

if status["status"] == "completed":
    print(status["output_url"])  # Your video URL
Enter fullscreen mode Exit fullscreen mode

Why Two Models?

Not every use case needs premium speed. If you're batch-processing 100 videos overnight, WAN 2.1 at $0.135 each saves real money. But if you're iterating on a client project, need image-to-video, or want results in 2 minutes instead of 15, Seedance pays for itself.

Pricing Context

Seedance 1.5 Pro via other providers:

  • BytePlus direct: ~$0.13/video (but you build the integration yourself)
  • Replicate (i2v, 480p): $0.45/video
  • Replicate (i2v, 720p): $1.25/video
  • PixelAPI: $0.25/video — ready-to-use, both t2v and i2v, no infrastructure to manage

Getting Started

  1. Sign up if you haven't (free tier available)
  2. Grab your API key from the dashboard
  3. Text-to-video: POST /v1/video/generate with model: "seedance-1.5"
  4. Image-to-video: POST /v1/seedance/generate with image upload
  5. Or try it in the web tool — no code needed

Questions? Reply to any email from us or open an issue.


PixelAPI offers 13+ AI endpoints for image editing, video generation, and more. See the full list.

Top comments (0)