Resize and convert images on-the-fly. AVIF/WebP/JPEG/PNG. Smart quality.
curl -X POST \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/image.jpg",
"w": 800,
"h": 600,
"fit": "cover",
"fmt": "webp",
"q": 75
}' \
https://api.imagick.tech/v1/images/resize -o result.webpA single URL/API to resize, convert, compress, crop, and cache globally. Ship the smallest image that looks great—every time.
Upload or paste an image URL. Tune params. We generate a signed URL and show an estimated result client-side.
Client → Resize Endpoint → Transform → CDN cache → User
| | | |\
| | | └─> Global POPs
| | └─> AVIF/WebP/JPEG/PNG, crop, fit
| └─> POST /v1/images/resize or Signed GET /i/{signature}?...
└─> Your app or websitecurl -X POST \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://example.com/img.jpg","w":1200,"h":800,"fit":"cover","fmt":"avif","q":60,"dpr":2}' \
${API_DOMAIN}/api/v1/images/resize -o out.avifGET ${API_DOMAIN}/i/{signature}?url=https%3A%2F%2Fexample.com%2Fimg.jpg&w=1200&h=800&fit=cover&fmt=webp&q=70&dpr=2&ttl=3600cover / contain / fill. Focal cropping.
AVIF/WebP/JPEG/PNG, fmt=auto.
q and dpr parameters.
Optional lossless, strip metadata.
High hit ratio, cache busting.
Logs and usage dashboards.