Skip to main content

Mask Creator Endpoint

Overview

This endpoint helps to mask an object on a given image

Request

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

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

Body Attributes

ParameterDescription
keyYour API Key used for request authorization
specific_objectLink to the actual image
base64true or false
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",
"specific_object": "the ball",
"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",
"specific_object": "the ball",
"track_id":null,
"webhook":null
});

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

fetch("https://modelslab.com/api/v6/image_editing/mask_creator", 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",
"outdir": "out",
"seed": 90227904,
"temp": "no"
}
}