Muapi exposes Topaz's full image-upscaling library through one REST API: Creative (Bloom 2/Bloom/Bloom Realism) for a stylized upscale that invents plausible new detail, Generative (Wonder 3.5/3/2, Recover 3, Standard MAX, Redefine, and more) for realistic reconstruction of textures and faces, and Precision (Standard V2, High Fidelity, CGI, Text Refine, Faces) for a faithful enlargement that stays close to the source pixels. All three use the same submit-and-poll pattern as every other model on the platform, billed dynamically from $0.08 per started block of output megapixels.
Enlarge an image up to 4x while generating new, plausible fine detail with Topaz's Bloom 2, Bloom, and Bloom Realism creative models.
Reconstruct realistic skin, texture, and facial detail with Topaz's Wonder and Recover model families, plus dedicated face-enhancement and subject-detection controls.
Enlarge an image faithfully with Topaz's precision library — Standard V2, High Fidelity, CGI, Text Refine, and Faces — without inventing new detail.
Topaz's image-upscaling models increase resolution and detail using deep learning trained specifically for photographic and generated imagery. Three families cover a spectrum from stylized reconstruction to a faithful, pixel-preserving enlargement, all scaling up to 4x.
Muapi exposes all three Topaz families through the same unified REST pattern used across the platform: one API key, one request-and-poll flow, and dynamic pay-as-you-go pricing based on real output resolution. Choose Creative when a more stylized, sharpened look is acceptable, Generative when you need realistic reconstruction of degraded detail, or Precision when the result must stay faithful to the source.
Topaz Upscale Image Creative's Bloom 2, Bloom, and Bloom Realism models invent plausible new fine detail while enlarging, with a tunable creativity strength and color-preservation toggle.
Topaz Upscale Image Generative's nine model variants reconstruct faces, fabric, and foliage with dedicated face-enhancement and foreground/background subject detection.
Topaz Upscale Image Precision's seven models — including CGI, Text Refine, and Faces — sharpen and enlarge without inventing new detail, ideal for print or professional delivery.
All three families support an adjustable upscale_factor up to 4x, with output billed by the real output megapixels after scaling.
Send an image URL and receive an upscaled image result. There is no GPU provisioning or image-processing pipeline to maintain.
No subscription or minimum commitment — pricing is calculated dynamically from the real output resolution at request time, billed per started block of megapixels.
| Model | Provider | Price | Best For |
|---|---|---|---|
| Topaz Upscale Image Creative | Topaz | From $0.08 / 2MP block | A stylized, sharpened upscale with new generated detail |
| Topaz Upscale Image Generative | Topaz | From $0.08 / 4-8MP block | Realistic reconstruction of faces, textures, and degraded sources |
| Topaz Upscale Image Precision | Topaz | From $0.08 / 24MP block | A faithful enlargement that preserves the original pixels |
Pricing is billed dynamically per started block of output megapixels after upscale_factor is applied — see each model's playground page for the exact per-model rate.
curl -X POST https://api.muapi.ai/api/v1/topaz-upscale-image-creative \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"image_url": "https://example.com/photo.jpg",
"model": "Bloom 2",
"upscale_factor": 2,
"creativity": 5
}'import requests
response = requests.post(
"https://api.muapi.ai/api/v1/topaz-upscale-image-creative",
headers={"x-api-key": "YOUR_API_KEY"},
json={
"image_url": "https://example.com/photo.jpg",
"model": "Bloom 2",
"upscale_factor": 2,
"creativity": 5,
},
)
request_id = response.json()["request_id"]
result = requests.get(
f"https://api.muapi.ai/api/v1/predictions/{request_id}/result",
headers={"x-api-key": "YOUR_API_KEY"},
)
print(result.json())Muapi's Topaz image upscale API increases an image's resolution and detail using Topaz's Creative (Bloom), Generative (Wonder/Recover), and Precision (Standard/CGI/Faces) model families, all through a unified REST workflow.
Creative leans furthest toward inventing new detail for a stylized result. Generative reconstructs realistic detail more conservatively. Precision stays closest to the original pixels and does not invent new detail.
Topaz Upscale Image Generative's Wonder and Recover models are built for realistic facial and skin-texture reconstruction, with dedicated face-enhancement controls.
Cost is based on the real output megapixels after upscale_factor is applied, billed dynamically per started block — 2MP for Creative, 4-8MP for Generative depending on model, and 24MP for Precision.
Yes — Creative's creativity parameter (1-9) controls how much new detail the model invents, and color_preservation keeps the original palette intact.
Yes, pass webhook_url in the request body or as a ?webhook= query parameter and Muapi will POST the final result when processing completes.