POST
/
recreate
curl --request POST \
  --url https://tryiton-webapp-git-dev-try-it-on.vercel.app/api/key/recreate \
  --header 'Content-Type: application/json' \
  --data '{
  "imageUrl": "<string>",
  "category": "fullMakeover",
  "prompt": "<string>"
}'
{
  "status": "<string>",
  "message": "<string>",
  "imageUrls": [
    "<string>"
  ],
  "imageKeys": [
    "<string>"
  ]
}

This operation costs 20 credits.
Recreate is a bit different than the rest in that we first return the URL of the images, but that doesn’t mean the images are processed yet. You may have to do a slow pull to get the images once they’re done by hitting the URL endpoint every 5 seconds or so.

Body

application/json
imageUrl
string
required
category
enum<string>
required
Available options:
fullMakeover,
background,
clothes,
hair
prompt
string
required

Response

200
application/json
Successful response
status
string
required
message
string
imageUrls
string[]
imageKeys
string[]