Skip to main content
POST
/
faceswap
/
single_video_swap
Face swap in video
curl --request POST \
  --url https://modelslab.com/api/v6/faceswap/single_video_swap \
  --header 'Content-Type: application/json' \
  --data '
{
  "key": "<string>",
  "init_image": "<string>",
  "init_video": "<string>",
  "output_format": "mp4",
  "watermark": true,
  "webhook": "<string>",
  "track_id": 123
}
'
import requests

url = "https://modelslab.com/api/v6/faceswap/single_video_swap"

payload = {
    "key": "<string>",
    "init_image": "<string>",
    "init_video": "<string>",
    "output_format": "mp4",
    "watermark": True,
    "webhook": "<string>",
    "track_id": 123
}
headers = {"Content-Type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
  method: 'POST',
  headers: {'Content-Type': 'application/json'},
  body: JSON.stringify({
    key: '<string>',
    init_image: '<string>',
    init_video: '<string>',
    output_format: 'mp4',
    watermark: true,
    webhook: '<string>',
    track_id: 123
  })
};

fetch('https://modelslab.com/api/v6/faceswap/single_video_swap', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://modelslab.com/api/v6/faceswap/single_video_swap",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS => json_encode([
    'key' => '<string>',
    'init_image' => '<string>',
    'init_video' => '<string>',
    'output_format' => 'mp4',
    'watermark' => true,
    'webhook' => '<string>',
    'track_id' => 123
  ]),
  CURLOPT_HTTPHEADER => [
    "Content-Type: application/json"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://modelslab.com/api/v6/faceswap/single_video_swap"

	payload := strings.NewReader("{\n  \"key\": \"<string>\",\n  \"init_image\": \"<string>\",\n  \"init_video\": \"<string>\",\n  \"output_format\": \"mp4\",\n  \"watermark\": true,\n  \"webhook\": \"<string>\",\n  \"track_id\": 123\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://modelslab.com/api/v6/faceswap/single_video_swap")
  .header("Content-Type", "application/json")
  .body("{\n  \"key\": \"<string>\",\n  \"init_image\": \"<string>\",\n  \"init_video\": \"<string>\",\n  \"output_format\": \"mp4\",\n  \"watermark\": true,\n  \"webhook\": \"<string>\",\n  \"track_id\": 123\n}")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://modelslab.com/api/v6/faceswap/single_video_swap")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n  \"key\": \"<string>\",\n  \"init_image\": \"<string>\",\n  \"init_video\": \"<string>\",\n  \"output_format\": \"mp4\",\n  \"watermark\": true,\n  \"webhook\": \"<string>\",\n  \"track_id\": 123\n}"

response = http.request(request)
puts response.read_body
{
  "status": "success",
  "generationTime": 123,
  "id": 123,
  "output": [
    "<string>"
  ],
  "proxy_links": [
    "<string>"
  ],
  "meta": {
    "file_prefix": "<string>",
    "outdir": "<string>",
    "output_format": "<string>",
    "reference_image": "<string>",
    "seed": 123,
    "source_image": "<string>",
    "target_video_url": "<string>",
    "watermark": "<string>",
    "watermark_image": "<string>"
  }
}
{
  "status": "error",
  "message": "<string>"
}

Request

Make a POST request to below endpoint and pass the required parameters in the request body.
curl
--request POST 'https://modelslab.com/api/v6/faceswap/single_video_swap' \

Body

json
{     
    "key": "your_api_key",    
    "init_image":"https://plus.unsplash.com/premium_photo-1661508557554-e3d96f2fdde5?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8OXx8YmVhdXRpZnVsJTIwZ2lybHxlbnwwfHwwfHx8MA%3D%3D",    
    "init_video":"https://tawk.link/6332cd5154f06e12d8971855/vc/66d997a6a2bc5fe2b627a250/v/4239c555189b772d5ca1bd5aa4bf872c4c12a07e/sdfsdfsdf.mp4",    
    "output_format":"mp4",    
    "webhook":null,    
    "track_id": null
}

Body

application/json
key
string
required

Your API Key used for request authorization

init_image
string<uri>
required

The image containing multiple faces to be swapped

init_video
string<uri>
required

The video containing the face(s) to replace the faces in the image. Must be less than 1 minute

output_format
string
default:mp4

The output format of the video

watermark
boolean
default:true

Indicates if the generated result should include a watermark

webhook
string<uri> | null

A URL to receive a POST API call once the video generation is complete

track_id
integer | null

An ID included in the webhook response to identify the request

Response

Video face swap response

status
enum<string>
Available options:
success
generationTime
number

Time taken to generate the video in seconds

id
integer

Unique identifier for the generation request

output
string<uri>[]

Array of URLs to the generated videos

Array of proxy URLs for the generated videos

meta
object

Metadata about the video generation process