---
title: "Topaz topaz-video-upscale API — Pricing, code samples | RunAPI"
url: "https://runapi.ai/models/topaz/video-upscale.md"
canonical: "https://runapi.ai/models/topaz/video-upscale.md"
locale: "en"
model: "Topaz"
provider: "Topaz"
variant_id: "topaz-video-upscale"
sdk_model_id: "topaz-video-upscale"
modality: "video"
price_from_cents: 12
billing_unit: "second"
status: "active"
---

# Topaz topaz-video-upscale API

Same API, same SDK — switch variants by changing one parameter.

## Pricing

**$0.120** per second

Failed generations are not charged

## Spec sheet

| Field | Value |
|---|---|
| Model ID | `topaz-video-upscale` |
| Provider | Topaz |
| Modality | video |
| Task type | asynchronous |
| Billing unit | second |
| API endpoint | `/api/v1/topaz/upscale_video` |
| Status | active |

## Install

```sh
npm install @runapi.ai/topaz
```

## Quickstart

```sh
curl -X POST https://api.runapi.ai/api/v1/topaz/upscale_video \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "model": "topaz-video-upscale", "prompt": "..." }'
```

```js
import RunAPI from "@runapi.ai/topaz";

const client = new RunAPI(process.env.RUNAPI_KEY);
const task = await client.create({
  model: "topaz-video-upscale",
  prompt: "...",
});
```

## FAQ

### Is the model ID stable across versions?

RunAPI keeps the model ID stable and handles compatible version refreshes without changing your request shape.

### What&#39;s the rate limit on this variant?

Per-key rate limits scale with usage tier. See pricing page for current limits.

### Can I switch variants later?

Yes — variant is a flag. Switch by changing the model parameter.

### Does it stream?

Where streaming is available, RunAPI streams end-to-end.

### Where do I report quality issues?

Open an issue on the public GitHub repo or email support.


## Related

Other Topaz variants:

- [topaz-image-upscale](https://runapi.ai/models/topaz/image-upscale.md) — `image-upscale` · $0.400
