Image Transforms
Blur Image
Apply a blur effect to an image at the given URL and return the result as a PNG.
GET/api/blur?url=
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
| url | string | Required | URL-encoded source image URL. |
Example request
curl "https://your-app.com/api/blur?url=https%3A%2F%2Fexample.com%2Fphoto.jpg" \
-H "x-api-key: YOUR_API_KEY" \
--output blurred.pngResponse
Content-Type: image/png — the blurred image.