Age and Gender
POST
{{BASE_URL}}/api/v2/biometrics/merchant/face/age_and_gender
Get the Age range and Gender of a person in an image
Headers
Name
Type
Description
x-api-key*
String
your secret key
app-id*
String
your app id
Request Body
Name
Type
Description
image*
String
face image URL(base64,png,jpeg)
{
"status": true,
"response_code": "00",
"message": "Face Information Retrieved",
"data": {
"age": {
"Low": 49,
"High": 57
},
"gender": {
"Value": "Male",
"Confidence": 99.88365173339844
}
}
}
Last updated