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

Dress up

PreviousFaceNextGenerate

Dress-Up Transformation

post

Change the dress or outfit of a character or image using an input image and the desired outfit image.

Body
imagestring · binaryOptional

Provide the image file you want to dress up

outfitstring · binaryOptional

Provide the image file of the outfit

categorystringOptional

upper_body | lower_body | dresses

Example: upper_body
Responses
200
Dress-Up transformation completed successfully
application/json
post
POST /api/v1/outfit/dress-up HTTP/1.1
Host: newbackend.morphai.io
Content-Type: multipart/form-data
Accept: */*
Content-Length: 60

{
  "image": "binary",
  "outfit": "binary",
  "category": "upper_body"
}
200

Dress-Up transformation completed successfully

{
  "status": 200,
  "message": "Dress-Up transformation completed successfully",
  "success": true,
  "data": {
    "url": "https://res.cloudinary.com/dnprda8z7/image/upload/v1740735969/morph-dapp/dress-up-example.jpg"
  }
}