iFake API Documentation

Integrate our powerful deepfake detection capabilities into your applications with our simple and robust API.

Face Detection & Landmark Analysis API

Detect faces in images and analyze facial landmarks for inconsistencies often found in deepfakes. Useful for still images or individual video frames.


fetch('https://api.ifake.com/v1/detect/face', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    image_url: 'https://example.com/image.jpg' 
    // or base64_image: 'data:image/jpeg;base64,...'
  })
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
Diagram showing facial landmarks used in deepfake detection

Diagram showing facial landmarks used in deepfake detection