ImageFaceSwap
Swap faces between two images using a POST request to the API-Market MCP Server. Upload target and swap image URLs to generate a face-swapped image for creative or practical use cases.
Instructions
Make a POST request to capix/faceswap/faceswap/v1/image
Input Schema
Name | Required | Description | Default |
---|---|---|---|
swap_url | Yes | Require an image with a face | https://storage.ws.pho.to/s2/818f3e408ee37c090cf23a3d12e15a08ada80ad9_m.jpeg |
target_url | Yes | Require an image with a face | https://storage.ws.pho.to/s2/7aa4876bc1f50bc92fc54cb3c326181ac5bbf5ef_m.jpeg |
Input Schema (JSON Schema)
{
"properties": {
"swap_url": {
"default": "https://storage.ws.pho.to/s2/818f3e408ee37c090cf23a3d12e15a08ada80ad9_m.jpeg",
"description": "Require an image with a face",
"title": "Swap Url",
"type": "string"
},
"target_url": {
"default": "https://storage.ws.pho.to/s2/7aa4876bc1f50bc92fc54cb3c326181ac5bbf5ef_m.jpeg",
"description": "Require an image with a face",
"title": "Target Url",
"type": "string"
}
},
"required": [
"swap_url",
"target_url"
],
"type": "object"
}