Topaz Image Upscale

Model Information

Display Name: Topaz Image Upscale

API Model ID: topazlabs/image-upscale

Category: Image tools

Description: Topaz Labs Image Upscale is the industry-standard professional image upscaling model. Recover detail, sharpen edges and produce print-ready images at up to 6x scale with multiple specialized enhancement models for different content types. **Key Features:** - Up to 6x upscaling with high-fidelity detail recovery - Five specialized enhancement models (general, low-res, CGI, high-fidelity, text) - Optional face enhancement for portraits - Native support for jpg, png and webp output **Capabilities:** - Photo restoration and detail recovery - Print-quality enlargement of low-resolution sources - CGI / digital art upscaling without artifact amplification - Text-aware upscaling preserving character legibility **Best For:** - Print preparation (poster / canvas / billboards) - Restoring scanned photos and historical imagery - E-commerce product image enhancement - 4K/8K social media and stock photography output **Technical Specs:** - Engine: Topaz Labs proprietary upscaling models - Input: any common image format (URL or base64) - Output: up to ~512 megapixels - License: Topaz Labs commercial via Replicate

How to Use This Model

To use Topaz Image Upscale via the HInow.ai API, use the model ID: topazlabs/image-upscale

API Request Example (Image Generation)


POST https://api.hinow.ai/v1/images
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "topazlabs/image-upscale",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0

Available Parameters

  • scale: Upscale factor. Output dimensions = input * scale. (Options: 2x, 4x, 6x)
  • enhance_model: Specialized enhancement model. Standard V2 is general purpose. (Options: Standard V2, Low Resolution V2, CGI, High Fidelity V2, Text Refine)
  • face_enhancement: Apply additional face enhancement. (Options: true, false)
  • output_format: Output image format. (Options: jpg, png, webp)
  • target_megapixels: Output billing tier (megapixels). Higher tier = higher cost. (Options: 12, 24, 36, 48, 60, 96, 132, 168, 336, 512)

Quick Reference

To use this model, set: "model": "topazlabs/image-upscale"

Featured: Yes

Documentation: https://hinow.ai/models/topazlabs/image-upscale

API Endpoint: https://api.hinow.ai/v1

Back to Models

Topaz Image Upscale

Featured

topazlabs/image-upscale

$0.000000
per image

About

Topaz Labs Image Upscale is the industry-standard professional image upscaling model. Recover detail, sharpen edges and produce print-ready images at up to 6x scale with multiple specialized enhancement models for different content types.

Key Features:

  • Up to 6x upscaling with high-fidelity detail recovery
  • Five specialized enhancement models (general, low-res, CGI, high-fidelity, text)
  • Optional face enhancement for portraits
  • Native support for jpg, png and webp output

Capabilities:

  • Photo restoration and detail recovery
  • Print-quality enlargement of low-resolution sources
  • CGI / digital art upscaling without artifact amplification
  • Text-aware upscaling preserving character legibility

Best For:

  • Print preparation (poster / canvas / billboards)
  • Restoring scanned photos and historical imagery
  • E-commerce product image enhancement
  • 4K/8K social media and stock photography output

Technical Specs:

  • Engine: Topaz Labs proprietary upscaling models
  • Input: any common image format (URL or base64)
  • Output: up to ~512 megapixels
  • License: Topaz Labs commercial via Replicate

Capabilities

Image tools

Parameters

scale

Upscale factor. Output dimensions = input * scale.

2x4x6x
enhance_model

Specialized enhancement model. Standard V2 is general purpose.

Standard V2Low Resolution V2CGIHigh Fidelity V2Text Refine
face_enhancement

Apply additional face enhancement.

truefalse
output_format

Output image format.

jpgpngwebp
target_megapixels

Output billing tier (megapixels). Higher tier = higher cost.

122436486096132168336512

Code Examples

curl -X POST https://api.hinow.ai/v1/images \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "topazlabs/image-upscale",
    "prompt": "Transform this image into cyberpunk style",
    "images": [
      "https://example.com/image1.jpg",
      "data:image/png;base64,iVBORw0KGgo..."
    ],
    "parameters": {
      "scale": "2x",
      "enhance_model": "Standard V2",
      "face_enhancement": "true",
      "output_format": "jpg",
      "target_megapixels": "12"
    }
  }'