Video models
Topaz Video Upscaler
On this page
Topaz Video Upscaler — high-quality AI video generation.
| modelId | topaz-video-upscale |
| Modality | video |
| Pricing | See this model on the Pricing page for the current per-call price (with your markup). |
Operations
| Operation | modelId | Endpoint | Required input |
|---|---|---|---|
| Default | topaz-video-upscale | POST /api/v1/generate | video_url |
| Poll task | — | GET /api/v1/task/{id}?model=topaz-video-upscale | — |
Input parameters
| Field | Type | Required | Values / example |
|---|---|---|---|
| video_url | string | Yes | URL of the video to upscale (image URL) |
| upscale_factor | string | No | Factor to upscale the video by (e.g. 2.0 doubles width and height) (options: 1 | 2 | 4) (default: 2) |
| nsfw_checker | boolean | No | A configurable parameter. Defaults to true in the Playground. (true/false) (default: true) |
Example request
bash
curl -X POST https://you.bot/api/v1/generate \
-H "Authorization: Bearer $YOUBOT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"modelId":"topaz-video-upscale","input":{"video_url":"https://example.com/input.mp4","upscale_factor":"2","nsfw_checker":true}}'