More modelsWavespeed aiVideo upscaler
Generate video with wavespeed-ai/video-upscaler
Generates a video using the wavespeed-ai/video-upscaler model.
AuthorizationBearer <token>
API key is required to authorize requests. Obtain a key from your AtlasCloud dashboard.
In: header
modelstring
model name
videostring
The video to upscale
copy_audio?boolean
Whether to copy the original video's audio to the upscaled video
Default
true
target_resolution?string
Target resolution to upscale to.
Value in
"720p" | "1080p" | "2k" | "4k"
Response Body
curl -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \ -H "Content-Type: application/json" \ -d '{ "model": "wavespeed-ai/video-upscaler", "video": "https://static.atlascloud.ai/media/videos/1750153497803932818_XsTPMIFB.mp4" }'
{
"id": "7hm7nbwarxrm80cnq1yvmxz4m4",
"logs": "...",
"urls": {
"cancel": "http://example.com",
"result": "http://example.com"
},
"input": {
"model": "wavespeed-ai/video-upscaler",
"video": "https://static.atlascloud.ai/media/videos/1750153497803932818_XsTPMIFB.mp4",
"copy_audio": true,
"target_resolution": "1080p"
},
"model": "black-forest-labs/flux-dev",
"output": [
"https://replicate.delivery/..."
],
"status": "processing",
"created_at": "2025-03-21T11:36:30.151Z",
"has_nsfw_contents": [
false
]
}