Skip to main content

Single Video Swap Endpoint

Overview

Single Video Swap endpoint allows swapping faces in all detected faces within a single video.

Request

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

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

Body Attributes

ParameterDescription
keyYour API Key used for request authorization.
init_imageThe image containing multiple faces to be swapped
init_videoThe video containing the face(s) to replace the faces in image. For videos, only those less than 1 minute are accepted as init_video. When using YouTube, ensure the video is not made for kids or classified as adult content.
watermarkOptional. If you want your generated result to have a watermark. Default true
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://media.gettyimages.com/id/1669190297/photo/new-delhi-india-prime-minister-narendra-modi-of-india-waits-to-greet-delegates-to-the-g20.jpg?s=612x612&w=0&k=20&c=u6bSNENkX0CqFajpRorPvpnTnmkG7kVTJTHQRiJaCdE=",
"init_video":"https://www.youtube.com/watch?v=xHC_qFPeXt0",
"webhook":null,
"track_id": null
}

Request

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

var raw = JSON.stringify({
"key": "",
"init_image":"https://media.gettyimages.com/id/1669190297/photo/new-delhi-india-prime-minister-narendra-modi-of-india-waits-to-greet-delegates-to-the-g20.jpg?s=612x612&w=0&k=20&c=u6bSNENkX0CqFajpRorPvpnTnmkG7kVTJTHQRiJaCdE=",
"init_video":"https://www.youtube.com/watch?v=xHC_qFPeXt0",
"webhook":null,
"track_id": null
});

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

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

Response

Example Response

{
"status": "success",
"generationTime": 10.1,
"id": 278,
"output": [
"https://pub-3626123a908346a7a8be8d9295f44e26.r2.dev/generations/4babc755-8276-4d23-addf-17e420a514cb.mp4"
],
"proxy_links": [
"https://cdn2.stablediffusionapi.com/generations/4babc755-8276-4d23-addf-17e420a514cb.mp4"
],
"meta": {
"file_prefix": "4babc755-8276-4d23-addf-17e420a514cb",
"outdir": "out/",
"seed": 1282720418,
"source_image": "https://media.gettyimages.com/id/1669190297/photo/new-delhi-india-prime-minister-narendra-modi-of-india-waits-to-greet-delegates-to-the-g20.jpg?s=612x612&w=0&k=20&c=u6bSNENkX0CqFajpRorPvpnTnmkG7kVTJTHQRiJaCdE=",
"target_video_url": "https://www.youtube.com/watch?v=xHC_qFPeXt0",
"watermark": "yes",
"watermark_image": null
}
}