MORPH AI API
  • QUICK START
  • API REFERENCE
    • Vocal
    • Face
    • Dress up
    • Generate
  • GET ACCESS TO THE API
  • SOCIALS
    • Website
    • Twitter
    • Telegram Community
    • Telegram Bot
    • Whitepaper
Powered by GitBook
On this page
  1. API REFERENCE

Face

PreviousVocalNextDress up

Face Morphing

post

Perform a face-swap on your video by providing a video and an image of the face to use.

Body
videostring · binaryOptional

Provide the video file to swap face

imagestring · binaryOptional

Provide the image file of the face to use

faceEnhancestringOptional

true | false

Example: true
Responses
200
Face Morphing completed successfully
application/json
post
POST /api/v1/morph/face HTTP/1.1
Host: newbackend.morphai.io
Content-Type: multipart/form-data
Accept: */*
Content-Length: 54

{
  "video": "binary",
  "image": "binary",
  "faceEnhance": true
}
200

Face Morphing completed successfully

{
  "status": 200,
  "message": "Face Morphing completed successfully",
  "success": true,
  "data": {
    "url": "https://res.cloudinary.com/dnprda8z7/video/upload/v1740735969/morph-dapp/obhm5wwcjla1lzcn0vbs.mp4"
  }
}