Image Analysis
Comparing Faces with AI
Detect faces in images and compare them with other faces in a Database or another image.
POST
/
api
/
ai
/
images
/
v2
/
facial-comparison
Authorization
Body
curl --request POST \
--url https://api.worqhat.com/api/ai/images/v2/facial-comparison \
--header 'Authorization: <authorization>' \
--header 'Content-Type: multi-part/form-data' \
--data '{
"source_image": "/path/to/image.jpg",
"target_image": "/path/to/image.jpg"
}'
{
"code": 200,
"data": {
"analysed_data": []
},
"processing_count": 1,
"processing_id": "492e385b-f1ec-412a-904e-3f55fd36fd86",
"processing_time": 1268,
"status": "success"
}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
multi-part/form-data
source_image
string
The image to be sent as input.
target_image
string
The image to be sent as input.
Response
200 - application/json
code
integer
data
object
processing_count
integer
processing_id
string
processing_time
integer
status
string
Was this page helpful?
curl --request POST \
--url https://api.worqhat.com/api/ai/images/v2/facial-comparison \
--header 'Authorization: <authorization>' \
--header 'Content-Type: multi-part/form-data' \
--data '{
"source_image": "/path/to/image.jpg",
"target_image": "/path/to/image.jpg"
}'
{
"code": 200,
"data": {
"analysed_data": []
},
"processing_count": 1,
"processing_id": "492e385b-f1ec-412a-904e-3f55fd36fd86",
"processing_time": 1268,
"status": "success"
}