Quick Image Enhance API
image enhancement — deblur, auto-enhance, NSFW detection, and age/gender analysis. **Models (all open-source, commercial-use permitted):** - NSFW detection: `Falconsai/nsfw_image_detection` (MIT) - Age classification: `nateraw/vit-age-classifier` (Apache-2.0) - Gender classification: `rizvandwiki/gender-classification-2` (MIT) - Deblur + Auto-Enhance: OpenCV (Apache-2.0) — no model download…
Quick Image Enhance API endpoints
| Method | Endpoint | Description |
|---|---|---|
| Health | ||
| GET |
/health /health |
|
| Enhancement | ||
| POST |
/v1/image/deblur /v1/image/deblur |
Applies unsharp masking by subtracting a Gaussian-blurred version from the original. Returns a PNG regardless of input format. Input file is deleted after processing. |
| POST |
/v1/image/auto-enhance /v1/image/auto-enhance |
Applies Contrast Limited Adaptive Histogram Equalization (CLAHE) on the L channel in LAB colour space for natural-looking contrast enhancement, then optionally boosts saturation… |
| Classification | ||
| POST |
/v1/image/age-gender /v1/image/age-gender |
Uses OpenCV Haar cascades to detect faces, then runs each face crop through: - `nateraw/vit-age-classifier` (Apache-2.0) for age range prediction -… |
| POST |
/v1/image/nsfw /v1/image/nsfw |
Uses `Falconsai/nsfw_image_detection` (MIT, ViT-based) to classify the image. Returns a boolean `nsfw` flag, the top label, score, and a score breakdown. |
Quick Image Enhance API pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|
| PRO | $10 / month | — |
|
| ULTRA | $25 / month | — |
|
| MEGA | $50 / month | — |
|