AI Picture Upscaler

Upscales and enhances images by AI


Details

Endpoints

1. Upscaler v1

This endpoint is used to upscale images using version 1 of the upscaling algorithm.

  • URL: https://www.capix.uz/v2/upscaler/v1/

  • Method: POST

  • Request Body:

{
  "scale": 2,
  "image_url": "https://storage.ws.pho.to/s2/7aa4876bc1f50bc92fc54cb3c326181ac5bbf5ef_m.jpeg"
}
  • Response: The response will contain the upscaled image data.

Example cURL request:

2. Upscaler v2

This endpoint is used to upscale images using version 2 of the upscaling algorithm.

  • URL: https://www.capix.uz/v2/upscaler/v2/

  • Method: POST

  • Request Body:

{
  "scale": 2,
  "image_url": "https://storage.ws.pho.to/s2/7aa4876bc1f50bc92fc54cb3c326181ac5bbf5ef_m.jpeg"
}
  • Response: The response will contain the upscaled image data.

Result

Code Examples

Version 1

curl -X POST \
  -H "Content-Type: application/json" \
  -H "token: API_KEY" \
  -d '{"scale": 2, "image_url": "https://storage.ws.pho.to/s2/7aa4876bc1f50bc92fc54cb3c326181ac5bbf5ef_m.jpeg"}' \
  'https://www.capix.uz/v2/upscaler/v1/'

Version 2

curl -X POST \
  -H "Content-Type: application/json" \
  -H "token: API_KEY" \
  -d '{"scale": 2, "image_url": "https://storage.ws.pho.to/s2/7aa4876bc1f50bc92fc54cb3c326181ac5bbf5ef_m.jpeg"}' \
  'https://www.capix.uz/v2/upscaler/v2/'

Last updated