API Reference
Remove reflection from image
Remove the reflection effect in the image to highlight the scene and main subject.
Model:
reflection-removal-of-qwen-image-editCredit:12
post
/v1/images/remove-reflectionAuthorization — This endpoint requires an API key. Pass it in the api-key header on every request. Learn more
Parameters
| Name | Type | Status | Description |
|---|---|---|---|
input_image | file | Required | Image file or URL to remove reflections from. |
Responses
Reflection removed successfullySingleImageResponse
| Field | Type | Description |
|---|---|---|
created | integer | Unix timestamp of when the response was created |
data | object[] | |
url | string | URL to download the result image |
curl -X POST "https://api.snapedit.app/v1/images/remove-reflection" \
-H "api-key: YOUR_API_KEY" \
-F "input_image=@./image.jpg"Response
{
"created": 1745827200,
"data": [
{
"url": "https://outputs.snapedit.app/outputs/abc123.png"
}
]
}
