SkyReels V3 Reference to Video is a fast AI reference-to-video generation model that creates videos from 1 to 4 reference images and a text prompt. Ready-to-use REST inference API for character-consistent videos, product visuals, branded storytelling, social media clips, advertising creatives, and professional reference-based video generation workflows with simple integration, no coldstarts, and affordable pricing.
Idle
$0.2per run·~50 / $10
Use Reference Image 1 as the main character identity, face, hairstyle, outfit, and overall appearance. Use Reference Image 2 as the environment, lighting, color mood, and background composition reference. Generate a natural 6-second vertical short-video style clip. The foreign female host sits at the desk near the window and speaks directly to the camera in a relaxed, friendly way. She makes subtle head movements, natural blinking, small facial expressions, and light hand gestures near the desk without covering her mouth. The camera has a very slight slow push-in, warm daylight remains stable, background stays softly blurred, and the mouth area remains clearly visible for lip-sync. Keep her identity consistent, keep the same outfit, keep realistic skin texture, avoid over-posing, avoid formal portrait style, make it feel like a real lifestyle creator video frame.
Skywork AI SkyReels V3 Reference-to-Video generates videos from one to four reference images and a natural-language prompt. It is designed for image-guided video creation where the reference images help preserve identity, appearance, style, or scene elements while the prompt controls motion, action, camera behavior, and overall direction.
Reference-guided video generation Use uploaded images to anchor characters, products, or visual style in the generated video.
Multi-image support
Upload 1–4 reference images for stronger control over appearance and consistency.
Prompt-driven motion Describe the scene, action, camera movement, or avatar behavior in natural language.
Flexible aspect ratios
Choose from 16:9, 9:16, or 1:1 depending on your target platform and composition needs.
Simple duration control
Generate clips from 5 to 10 seconds with straightforward pricing.
Production-ready API Suitable for character-driven clips, product videos, stylized social content, and reference-based storytelling workflows.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text prompt describing the scene, action, camera, or avatar behavior. |
| images | Yes | Reference image URLs. Upload 1–4 images. |
| aspect_ratio | No | Aspect ratio of the generated video. Supported values: 16:9, 9:16, 1:1. Default: 16:9. |
| duration | No | Generated video duration in seconds. Range: 5–10. Default: 5. |
1–4 images to guide identity, look, or scene consistency.16:9, 9:16, or 1:1 based on the final placement.5 and 10 seconds.A cinematic product reveal with smooth camera movement, soft studio lighting, subtle reflections, premium commercial style, and stable visual consistency with the reference images
Pricing is based on duration.
| Duration | Cost |
|---|---|
| 5s | $0.20 |
| 6s | $0.24 |
| 7s | $0.28 |
| 8s | $0.32 |
| 9s | $0.36 |
| 10s | $0.40 |
5s to validate the concept, then extend to a longer duration if needed.9:16 for mobile-first content and 16:9 for widescreen layouts.prompt and images are required.images supports 1 to 4 reference images.duration supports 5 to 10 seconds.aspect_ratio defaults to 16:9.duration.Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/skywork-ai/skyreels-v3/reference-to-video with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Skyreels v3 Reference To Video below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/skywork-ai/skyreels-v3/reference-to-video" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "16:9",
"duration": 5
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("skywork-ai/skyreels-v3/reference-to-video", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "16:9",
"duration": 5
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"skywork-ai/skyreels-v3/reference-to-video",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "16:9",
"duration": 5
}
)
print(output["outputs"][0]) # → URL of the generated outputSkyreels v3 Reference To Video is a Skywork Ai model for video generation from images, exposed as a REST API on WaveSpeedAI. SkyReels V3 Reference to Video is a fast AI reference-to-video generation model that creates videos from 1 to 4 reference images and a text prompt. Ready-to-use REST inference API for character-consistent videos, product visuals, branded storytelling, social media clips, advertising creatives, and professional reference-based video generation workflows with simple integration, no coldstarts, and affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/skywork-ai/skywork-ai-skyreels-v3-reference-to-video.
Skyreels v3 Reference To Video starts at $0.20 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `prompt`, `images`, `aspect_ratio`, `duration`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/skywork-ai/skywork-ai-skyreels-v3-reference-to-video.
Sign up for a free WaveSpeedAI account to claim starter credits, copy your API key from /accesskey, then call the endpoint shown in the API tab of the playground. The playground also auto-generates a code sample in Python, JavaScript, or cURL for the parameters you've set.
Commercial usage rights depend on the model's license, set by its provider (Skywork Ai). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.