Image Faceswap
Face Swap (Image) Job Creation
Model
nudifyme/img/faceswapPricing
0.02 / imageCreate Face Swap Job
Input
Description
Example Request
const response = await fetch(
'https://api.deepixels.co/v1/generate',
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': 'YOUR_API_KEY'
},
body: JSON.stringify({
model: 'nudifyme/img/faceswap',
input: {
imageUrl: 'https://images.pexels.com/photos/3756941/pexels-photo-3756941.jpeg',
faceUrl: 'https://images.pexels.com/photos/2661256/pexels-photo-2661256.jpeg',
advanced: true
},
webhook: 'YOUR_WEBHOOK_URL'
})
}
);
const data = await response.json();
console.log(data);Job Creation Response
Getting Final Results
Input
Description
Last updated