Age Detection
The Age Prediction API analyzes a user-submitted face image to estimate the person's age range. This endpoint processes the image, applies facial analysis, and returns a response indicating the predicted minimum and maximum age, along with a confidence score.
Age Detection
POST
{{BASE-URL}}/verification/external/face/age
Headers
Name
Value
Content-Type
application/json
api-key
<api key from your portal>
Body
Name
Type
Description
image
string
face image - base64
Response
```json
{
"status": true,
"message": "Age detection successful",
"data": {
"status": true,
"age_low": 20,
"age_high": 23
}
}
```
Last updated