Query parameters

  • image string(uri) Required

    URL of the image to process

  • width integer

    Output width in pixels

    Minimum value is 1, maximum value is 1024. Default value is 512.

  • height integer

    Output height in pixels

    Minimum value is 1, maximum value is 1024. Default value is 512.

  • radius number

    Blur radius

    Minimum value is 0, maximum value is 50. Default value is 5.

Responses

  • 200 image/svg+xml

    SVG image

  • 400 application/json

    Bad request - missing or invalid parameters

    Hide response attributes Show response attributes object
    • success boolean
    • error object
      Hide error attributes Show error attributes object
      • message string
      • code string
    • meta object
      Hide meta attribute Show meta attribute object
      • generatedAt string(date-time)
  • 401 application/json

    Unauthorized - invalid or missing API key

    Hide response attributes Show response attributes object
    • success boolean
    • error object
      Hide error attributes Show error attributes object
      • message string
      • code string
    • meta object
      Hide meta attribute Show meta attribute object
      • generatedAt string(date-time)
GET /v1/images/filters/blur
curl \
 --request GET 'https://api.4mina.app/v1/images/filters/blur?image=https%3A%2F%2Fexample.com' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
string
Response examples (400)
{
  "success": false,
  "error": {
    "message": "string",
    "code": "string"
  },
  "meta": {
    "generatedAt": "2025-05-04T09:42:00Z"
  }
}
Response examples (401)
{
  "success": false,
  "error": {
    "message": "string",
    "code": "string"
  },
  "meta": {
    "generatedAt": "2025-05-04T09:42:00Z"
  }
}