API Documentation

Enhance and upscale your images automatically with ease. Upload your images and get high-quality results in seconds.

POST /upload

Upload an image to be enhanced and upscaled.

Request:
POST /upload
Headers:
  Content-Type: multipart/form-data
  x-api-key: YOUR_API_KEY

Body:
  fileInput: (file)
          Copy Icon
        
Response:
{
  "message": "Success",
  "url": "URL_TO_ENHANCED_IMAGE",
  "fileId": "FILE_ID"
}
          Copy Icon
        

GET /download/:fileId

Download the enhanced image.

Request:
GET /download/:fileId
          Copy Icon
Response:
(Content-Disposition: attachment; filename="enhanced-image.ext")
        

Error Responses

{
  "message": "Error message",
  "error": "Detailed error information"
}
          Copy Icon