Skip to main content

Decluttering API

The decluttering service allows you to automatically remove unwanted objects from your interior photos, creating cleaner and more attractive spaces for your real estate listings.

Generate a decluttered image

Calling this endpoint launches a new generation to declutter an image. This endpoint also creates a new project; depending on your subscription, it is possible to obtain free variations on the same project. As generation can take several minutes, the result is not immediately available. You can either provide a webhook URL or regularly query the retrieval API.

Request Parameters

string
required
The unique user identifier (UUID) that you can retrieve from your Developer Space
string
required
URL of the image you want to declutter (format: jpg, png)
boolean
If set to true, the AI will automatically detect objects to remove. Otherwise, you will need to provide a mask.
string
The URL we call once the generation is complete. The request body is the same as the response from the retrieval API

Response

string
The unique generation identifier (UUID) to use with the retrieval API
number
The number of photos remaining after this generation
string
The unique project identifier (UUID)

Request Example

Response Example

Generate a variation of a decluttered image

Calling this endpoint allows you to generate a variation of a previously decluttered image, optionally specifying a new mask. As generation can take several minutes, the result is not immediately available.

Request Parameters

string
required
The unique user identifier (UUID) that you can retrieve from your Developer Space
string
required
The unique identifier of the previous generation you want to create a variation of
string
required
URL of the original image to declutter
string
required
URL of the mask indicating areas to declutter

Response

string
The unique identifier of the new generation (UUID) to use with the retrieval API
number
The number of photos remaining after this generation

Request Example

Response Example

Retrieve a decluttered image

This endpoint allows you to obtain the result of a previously performed generation. It lets you know the status of your generation and retrieve the URL of your generated images. Important note: In case of “FAILED” status, your photos are automatically refunded.

Request Parameters

string
required
The unique user identifier (UUID) that you can retrieve from your Developer Space
string
required
The unique generation identifier (UUID) returned by the generation API

Response

string
The generation status: “STARTING”, “PROCESSING”, “SUCCEEDED”, “FAILED”
array
An array containing the URLs of generated images (present only if status=“SUCCEEDED”)
number
The number of variations already performed on this project

Request Example

Response Example