Developers

Upscale API

Enlarge an image 2x or 4x while recovering detail that plain resizing would blur away. Try it without code first on the free upscale tool.

POST/v1/images/transform
curl https://api.pixpoo.com/v1/images/transform \
  -H "x-api-key: pxp_xxxxxxxx" \
  -F file=@photo.jpg \
  -F upscale=2

Parameters

filefilerequired

The source image (multipart upload). Use "url" instead to fetch from a remote address.

upscale"2" | "4"required

Scale factor to enlarge by.

Response

The upscaled image at 2x or 4x the original dimensions.

Prefer JSON with a base64 payload instead of raw bytes? Use /v1/images/transform/json with the same parameters.

← Back to API documentation