- Introduction
- Consuming the API
- Characteristics
- Error Messages
- Support Material
- Authentication
- Address Parsing
- Billing/DailySummary
- Content Compare
- Content Extraction
- Content Extraction Async
- Content Extraction Distance
- Content Fullreader
- Enrichment
- Facematch
- Generative Content Extraction
- Image Properties
- Image Reporting - Continuous Improvement
- License Plate Recognition
- Liveness Detection
- MultiAddress Parsing
- MultiPage Content Extraction
- Vio Extraction
Face Compare 1:1 [application/json]
POST
https://mostqiapi.com/process-image/biometrics/face-compare
en-US
Last modified:2024-08-21 17:47:44
Request
Header Params
Authorization
string
required
Example:
Bearer {{bearer_token}}
Body Params application/json
faceFileBase64A
string
optional
Binary of the file to be processed, encoded in text string according to RFC3548 standard using base64 encoding.
faceFileBase64B
string
optional
Binary of the file to be processed, encoded in text string according to RFC3548 standard using base64 encoding.
faceFileUrlA
string
optional
faceFileUrlB
string
optional
faceFilePasswordA
string <base64>
optional
faceFilePasswordB
string <base64>
optional
Example
{
"faceFileBase64A": "",
"faceFileBase64B": "",
"faceFileUrlA": "",
"faceFileUrlB": "",
"faceFilePasswordA": "",
"faceFilePasswordB": ""
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://mostqiapi.com/process-image/biometrics/face-compare' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"faceFileBase64A": "",
"faceFileBase64B": "",
"faceFileUrlA": "",
"faceFileUrlB": "",
"faceFilePasswordA": "",
"faceFilePasswordB": ""
}'
Responses
🟢200Ok
application/json
Body
result
object
required
distances
array[number <float>]
deprecated
similarity
number <float>
required
>= 0<= 1
requestId
string
required
elapsedMilliseconds
integer
required
status
object
required
code
string
required
message
string | null
required
errors
array [object {2}] | null
required
Example
{
"result": {
"distances": [
0.81
],
"similarity": 0.19
},
"requestId": "eyDwui1750WVJTkno8VZD",
"elapsedMilliseconds": 493,
"status": {
"message": "Ok",
"code": "200",
"errors": null
}
}
🟠401R117 Invalid authorization data
🟠400R101 A specified parameter is wrong
🔴500E100 The request could not be processed
Modified at 2024-08-21 17:47:44