AILabTools API - Merge Portraits - API
Request
- URL:
https://www.ailabapi.com/api/portrait/effects/face-fusion
- Method:
POST
- Content-Type:
multipart/form-data
Image requirements
Field | Requirements |
---|---|
image_target | JPEG JPG BMP PNG |
image_template | JPEG JPG BMP PNG |
Header
Field | Required | Type | Description |
---|---|---|---|
ailabapi-api-key | YES | string | Application API KEY. Get API KEY |
Body
Field | Required | Type | Scope | Description |
---|---|---|---|---|
image_target | YES | file | Target image. | |
image_template | YES | file | Template images. | |
source_similarity | NO | float | [0, 1] | Face similarity, where a higher numerical value indicates greater similarity. 0 : Consistent with the original template.1 : Maximum similarity with the target image. |
Response
Processing Flow
-
Handle
Public Parameters
:First, parse and validate the
Public Parameters
, checking the status code or response message to ensure the request is successful and no errors are present. -
Handle
Business Parameters
:If the public parameters are valid and no exceptions are found, proceed to process the business logic in the
Business Parameters
.
Public Parameters
Viewing Public Parameters and Error CodesBusiness Parameters
Field | Type | Description |
---|---|---|
data | object | The content of the result data returned. |
+image | string | The result image, returning the Base64 encoding of the image. |
Example
{
"request_id": "",
"log_id": "",
"error_code": 0,
"error_code_str": "",
"error_msg": "",
"error_detail": {
"status_code": 200,
"code": "",
"code_message": "",
"message": ""
},
"data": {
"image": ""
}
}
Code example
If you'd like to see the actual effects, please visit the experience page for a trial.