Clarity Pro Upscaler is a photorealistic image upscaler from Clarity AI with identity preservation, creative detail control, and up to 16x scaling. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Idle

$0.03per run·~33 / $1


Clarity AI Pro Upscaler upscales images with Clarity AI while exposing a simple target_megapixels control for predictable output sizing. The backend prepares the input and selects the appropriate upstream scaling settings so the final image lands close to the requested megapixel target.
Predictable output sizing
Set the desired output directly with target_megapixels for easier delivery planning and cost control.
Simple enhancement workflow Upload an image, choose the target megapixels, optionally adjust creativity, and generate the result.
Flexible restoration strength
Use creativity to balance stricter source preservation against stronger generated detail.
Reliable output delivery Generated images are rehosted to the WaveSpeed CDN for fast preview and download.
Modern Clarity AI pipeline Powered by the latest Clarity AI workflow with RunPod-backed execution.
| Parameter | Required | Description |
|---|---|---|
image | Yes | Input image URL or uploaded image. |
target_megapixels | No | Requested output size in megapixels. Use 4 MP for quick tests, 8–16 MP for high-quality web or print assets, and larger values for large-format delivery. |
creativity | No | Negative values stay closer to the source, while positive values add more generated detail. |
Pricing is based on the requested target_megapixels.
| Target Megapixels | Cost |
|---|---|
| 4 MP | $0.12 |
| 8 MP | $0.24 |
| 16 MP | $0.48 |
| 64 MP | $1.92 |
target_megapixelscreativity does not affect pricingcreativity lower when identity, structure, or product accuracy matters most.creativity gradually if you want stronger generated texture or sharper enhancement.target_megapixels.Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/clarity-ai/pro-upscaler with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Pro Upscaler below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/clarity-ai/pro-upscaler" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"image": "https://example.com/your-input.jpg",
"target_megapixels": 4,
"creativity": 0
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("clarity-ai/pro-upscaler", {
"image": "https://example.com/your-input.jpg",
"target_megapixels": 4,
"creativity": 0
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"clarity-ai/pro-upscaler",
{
"image": "https://example.com/your-input.jpg",
"target_megapixels": 4,
"creativity": 0
}
)
print(output["outputs"][0]) # → URL of the generated outputPro Upscaler is a Clarity model for upscaling, exposed as a REST API on WaveSpeedAI. Clarity Pro Upscaler is a photorealistic image upscaler from Clarity AI with identity preservation, creative detail control, and up to 16x scaling. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/clarity-ai/clarity-ai-pro-upscaler.
Pro Upscaler starts at $0.030 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `image`, `creativity`, `target_megapixels`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/clarity-ai/clarity-ai-pro-upscaler.
Sign up for a free WaveSpeedAI account to claim starter credits, copy your API key from /accesskey, then call the endpoint shown in the API tab of the playground. The playground also auto-generates a code sample in Python, JavaScript, or cURL for the parameters you've set.
Commercial usage rights depend on the model's license, set by its provider (Clarity). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.