能用AI API文档
  1. InsightFace任务提交
能用AI API文档
  • 模型接口
    • Midjourney API文档
      • InsightFace任务提交
        • 提交swap_face任务
          POST
      • 任务提交
        • 提交Imagine任务
        • 执行动作
        • 提交Blend任务
        • 提交Describe任务
        • 提交Modal
        • 提交Shorten任务
        • 上传文件到discord
      • 任务查询
        • 根据ID列表查询任务
        • 根据ID列表查询任务-字段displays
        • 指定ID获取任务
        • 获取任务图片的seed(需设置mj或niji的私信ID)
    • Suno音乐接口
      • 生成音乐
      • 查询任务
    • Flux调用文档
      POST
  1. InsightFace任务提交

提交swap_face任务

POST
https://gnomic.nengyongai.cn/mj/insight-face/swap
InsightFace任务提交

请求参数

Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token
示例:
Authorization: Bearer ********************
Header 参数
Authorization
string 
可选
默认值:
{{YOUR_API_KEY}}
Body 参数application/json
sourceBase64
string 
必需
人脸源图片base64
示例值:
data:image/png;base64,xxx1
targetBase64
string 
必需
目标图片base64
示例值:
data:image/png;base64,xxx2
accountFilter
object (Filter) 
可选
instanceId
string 
账号实例ID
可选
notifyHook
string 
可选
回调地址, 为空时使用全局notifyHook
state
string 
自定义参数
可选
示例
{
    "sourceBase64": "data:image/png;base64,xxx1",
    "targetBase64": "data:image/png;base64,xxx2",
    "accountFilter": {
        "instanceId": "string"
    },
    "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 --request POST 'https://gnomic.nengyongai.cn/mj/insight-face/swap' \
--header 'Authorization: {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "sourceBase64": "data:image/png;base64,xxx1",
    "targetBase64": "data:image/png;base64,xxx2",
    "accountFilter": {
        "instanceId": "string"
    },
    "notifyHook": "string",
    "state": "string"
}'

返回响应

🟢200OK
application/json
Body
code
integer <int32>
可选
description
string 
可选
result
string 
可选
示例
{
    "code": 0,
    "description": "string",
    "result": "string"
}
🟢201Created
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
修改于 2024-08-20 20:09:24
上一页
Midjourney API文档
下一页
提交Imagine任务
Built with