Skip to main content

Multiple Face Swap Endpoint

Overview

Multiple Face Swap endpoint allows swapping faces in all detected faces within a single image.

Request

--request POST 'https://modelslab.com/api/v6/deepfake/multiple_face_swap' \

Make a POST request to https://modelslab.com/api/v6/deepfake/multiple_face_swap endpoint and pass the required parameters in the request body.

Body Attributes

ParameterDescriptionValue
keyYour API Key used for request authorization.API key
init_imageThe first image that contains the face to be swapped.URL to image
target_imageThe second image that contains the face to replace the face in the initial image.URL to image
webhookProvide a URL to receive a POST API call once the image generation is complete.URL
watermarkIndicate if you want the generated result to have a watermark. Default is true.true/false
track_idThis ID will be included in the response to the webhook API call and will be used to identify the webhook request.Integral value

Example

Body

Body
{
"key": "",
"init_image":"https://i.pinimg.com/564x/4c/6a/d0/4c6ad0f74a3a251344cb115699a9a7c9.jpg",
"target_image":"https://i.pinimg.com/564x/11/ac/0d/11ac0ddaf6962e395f30abc61043393e.jpg",
"webhook": null,
"track_id": null
}

Request

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

var raw = JSON.stringify({
"key": "",
"init_image":"https://i.pinimg.com/564x/4c/6a/d0/4c6ad0f74a3a251344cb115699a9a7c9.jpg",
"target_image":"https://i.pinimg.com/564x/11/ac/0d/11ac0ddaf6962e395f30abc61043393e.jpg",
"webhook": null,
"track_id": null
});

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

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

Response

Example Response
{
"status": "success",
"generationTime": 1.05,
"id": 117356534,
"output": [
"https://pub-3626123a908346a7a8be8d9295f44e26.r2.dev/generations/3c17fd3b-22e9-45f0-ab4b-7788c1af89a2.jpg"
],
"proxy_links": [
"https://cdn2.stablediffusionapi.com/generations/3c17fd3b-22e9-45f0-ab4b-7788c1af89a2.jpg"
],
"meta": {
"file_prefix": "3c17fd3b-22e9-45f0-ab4b-7788c1af89a2",
"init_image": "https://i.pinimg.com/564x/4c/6a/d0/4c6ad0f74a3a251344cb115699a9a7c9.jpg",
"model_save_format": "jpg",
"seed": 909604405,
"target_image": "https://i.pinimg.com/564x/11/ac/0d/11ac0ddaf6962e395f30abc61043393e.jpg",
"temp": "no",
"watermark": "yes",
"watermark_image": null
}
}