Documentation

AI Enhancer API Docs

Integrate AI image enhancement into your app with simple REST endpoints. This documentation is a working placeholder designed for future backend integration.

Example Endpoint

POST

/enhance

Authentication

Send your API key using the Authorization header.

Authorization: Bearer YOUR_API_KEY

Sample cURL

curl -X POST https://api.aienhancer.com/v1/enhance \\ -H "Authorization: Bearer YOUR_API_KEY" \\ -H "Content-Type: multipart/form-data" \\ -F "image=@photo.jpg" \\ -F "model=face" \\ -F "scale=4"

Example Request (JSON)

{
  "model": "face",
  "scale": 4,
  "output": "png"
}

Example Response (JSON)

{
  "id": "job_123",
  "status": "completed",
  "model": "face",
  "output_url": "https://cdn.aienhancer.com/jobs/job_123/output.png"
}

API Overview

Upload an image, select a model, and receive an enhanced output. Supports face restoration, upscaling, denoise, colorization, and old photo restoration.

Base URL

https://api.aienhancer.com/v1

Coming soon

This page is live and routed correctly. We’ll be adding full content here soon.