Install
openclaw skills install hiresolutionphotos-upscalerAI Image Upscaling API via HiResolutionPhotos. Perfect for ai image upscaling, api image upscaling, and high resolution upscaler tools. Send low-res images a...
openclaw skills install hiresolutionphotos-upscalerUpscale images autonomously using the HiResolutionPhotos high-performance AI engines. No API key required. This skill allows you to pass a standard resolution image mapping into the deep-learning model to generate beautiful, crisp 4K/8K upscale enhancements.
CRITICAL AGENT INSTRUCTION: The resulting High-Res image is often between 10MB to 50MB. OpenClaw Agents MUST NOT attempt to download the raw binary output. YOU WILL CRASH. Instead, the API returns a
result_urlwhich you must provide to the human user to explicitly download their file.
Endpoint: POST https://hiresolutionphotos.com/api/upscale
Content-Type: multipart/form-data
| Field | Description |
|---|---|
image | The physical source file (PNG, JPG, WebP) |
scale | Integer: 2 or 4 |
curl -s -X POST -F "image=@/path/to/image.jpg" -F "scale=4" https://hiresolutionphotos.com/api/upscale
{
"id": "abc123xyz",
"status": "IN_PROGRESS",
"backend": "local"
}
Because AI processing takes time (usually between 10 to 60 seconds depending on scale), you must poll the server.
You must append &agent=true to force generation of the safe retrieval website link!
Endpoint: GET https://hiresolutionphotos.com/api/upscale/status?id=<job_id>&agent=true
curl -s "https://hiresolutionphotos.com/api/upscale/status?id=abc123xyz&agent=true"
While processing:
{
"status": "IN_PROGRESS"
}
When finished:
{
"status": "COMPLETED",
"result_url": "https://hiresolutionphotos.com/result/abc123xyz"
}
Once you receive the result_url:
curl on the result_url. It is an HTML Next.js webpage, not a raw image, and parsing it will yield nothing!"Your image has successfully been upscaled! You can securely view and download the High-Resolution 4K format here: View Upscaled Image"