提交swap_face任务
POST
{{BASE_URL}}/mj/insight-face/swap
请求参数
Header 参数
Authorization
string
可选
示例值:
Bearer {{YOUR_API_KEY}}
Body 参数application/json
sourceBase64
string
必需
targetBase64
string
必需
notifyHook
string
可选
state
string
自定义参数
示例
{
"sourceBase64": "data:image/png;base64,xxx1",
"targetBase64": "data:image/png;base64,xxx2",
"notifyHook": "string",
"state": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request POST '{{BASE_URL}}/mj/insight-face/swap' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"sourceBase64": "data:image/png;base64,xxx1",
"targetBase64": "data:image/png;base64,xxx2",
"notifyHook": "string",
"state": "string"
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
description
string
必需
result
string
必需
示例
{
"code": 0,
"description": "string",
"result": "string"
}
修改于 2024-10-22 10:06:29