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

NameTypeRequiredDescription
urlstringRequiredURL-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.png

Response

Content-Type: image/png — the blurred image.