Skip to main content

Object Removal Endpoint

Overview

This endpoint helps to outpaint by expanding the giving image

Request

--request POST 'https://modelslab.com/api/v6/image_editing/object_removal' \

Make a POST request to https://modelslab.com/api/v6/image_editing/object_removal endpoint and pass the required parameters as a request body to the endpoint.

Body Attributes

ParameterDescription
keyYour API Key used for request authorization
init_imageLink to the actual image
mask_imageLink to the mask area you want to remove
webhookSet an URL to get a POST API call once the image generation is complete.
track_idThis ID is returned in the response to the webhook API call. This will be used to identify the webhook request.

Example

Body

Body
{
"key": "",
"init_image": "https://i.ibb.co/kMRK2mg/image2.jpg",
"mask_image": "https://i.ibb.co/tH0Z8HY/mask2.jpg",
"track_id":null,
"webhook":null
}

Request

var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");

var raw = JSON.stringify({
"key": "",
"init_image": "https://i.ibb.co/kMRK2mg/image2.jpg",
"mask_image": "https://i.ibb.co/tH0Z8HY/mask2.jpg",
"track_id":null,
"webhook":null
});

var requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow'
};

fetch("https://modelslab.com/api/v6/image_editing/object_removal", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));

Response

Example Response

{
"status": "success",
"generationTime": 5.358475685119629,
"id": 108,
"output": [
"https://pub-3626123a908346a7a8be8d9295f44e26.r2.dev/generations/db872428-8864-427d-b5a1-c5f3670de7df.png"
],
"proxy_links": [
"https://cdn2.stablediffusionapi.com/generations/db872428-8864-427d-b5a1-c5f3670de7df.png"
],
"meta": {
"base64": "no",
"file_prefix": "db872428-8864-427d-b5a1-c5f3670de7df",
"image_path": "https://i.ibb.co/kMRK2mg/image2.jpg",
"mask_path": "https://i.ibb.co/tH0Z8HY/mask2.jpg",
"outdir": "out",
"seed": 90227904,
"temp": "no"
}
}