Step 1
Face Detection
/face/detect
Checks whether the image contains faces before you spend compute on embedding or matching.
- • Returns face count and bounding boxes
- • Useful for camera checks and human presence validation
- • Best entry point before all downstream face workflows
{
"success": true,
"faceCount": 2,
"faces": [
{
"faceId": 1,
"confidence": 0.998
}
]
}