Image models
Topaz Image Upscale
On this page
Topaz Image Upscale — fast, high-fidelity AI image generation & editing.
| modelId | topaz-image-upscale |
| Modality | image |
| Pricing | See this model on the Pricing page for the current per-call price (with your markup). |
Operations
| Operation | Endpoint | Description |
|---|---|---|
| Text to image | POST /api/v1/generate | Base generation from a text prompt. |
| Image to image | POST /api/v1/generate | Condition on a reference image — upload it via /api/v1/files/upload and pass the URL. |
| Poll task | GET /api/v1/task/{id}?model=topaz-image-upscale | Retrieve state and result URLs. |
Input parameters
| Field | Type | Required | Values / example |
|---|---|---|---|
| image_url | image | required | Drag and drop or click to upload your file |
| upscale_factor | select | required | 1, 2, 4, 8 |
| nsfw_checker | select | optional | false, 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-image-upscale","input":{"upscale_factor":"2","nsfw_checker":"true"}}'