API for undressing images with different styles.
API for undressing images with different styles.
Base64 encoded mask image in png format. Contains two colors: white for undressing regions, black for the rest.
curl -i -X POST \
https://deepstrip.redocly.app/_mock/openapi/undress \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"source_image": "string",
"mask": "string",
"automask": true,
"style": "standard"
}'
{ "id": "string" }
curl -i -X POST \
https://deepstrip.redocly.app/_mock/openapi/face_swap_videos/analyze \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"video_url": "string",
"preview": true,
"version": "v1"
}'
{ "price": 0, "version": "v1", "preview": true }
curl -i -X POST \
https://deepstrip.redocly.app/_mock/openapi/face_swap_videos \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"video_url": "string",
"face_url": "string",
"preview": true,
"version": "v1"
}'
{ "id": "string", "status": "string", "message": "string" }
curl -i -X GET \
'https://deepstrip.redocly.app/_mock/openapi/face_swap_videos/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "id": "string", "status": "initial", "progress": 0, "step": "queued", "result_url": "string", "error_details": {} }
curl -i -X GET \
'https://deepstrip.redocly.app/_mock/openapi/undress/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "status": "pending", "image": "string" }
curl -i -X POST \
https://deepstrip.redocly.app/_mock/openapi/face_swaps \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"image": "string",
"face": "string",
"version": "v1"
}'
{ "id": "string" }
curl -i -X GET \
'https://deepstrip.redocly.app/_mock/openapi/face_swaps/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "status": "pending", "image": "string" }