Product Shot Editing
//
Apply Effects
Description Adds visual overlays such as dust, snow, fog, light leaks, and lens flare to enhance the realism and atmosphere of a product image.
Each effect includes multiple variations to ensure visually unique results. Effects can be applied directly to the image or delivered as separate layers.
The URL of the vehicle image. If both image_url and file are provided, image_url is used. Accepted formats are jpeg, jpg, png, webp.
The vehicle image in base64 format. Used if image_url is not provided. Accepted formats are jpeg, jpg, png, webp.
The visual effect to apply to the image. Supported values are dust, snow, fog, light leaks, lens flare.
If true, returns only the effect layer. If false, returns the full image with the effect composited.
Default:false
POST
curl -i -X POST \
https://engine.prod.bria-api.com/v1/product/vehicle/apply_effect \
-H 'Content-Type: application/json' \
-H 'api_token: string' \
-d '{
"image_url": "https://example.com/vehicle.jpg",
"effect": "fog",
"layers": false,
"seed": 42
}'Response
- layers_false
- layers_true
{ "url": "https://example.com/results/full_image_refined_1.png", "seed": 123 }