Age Estimation Check
Run an age estimation check
Check request
Attribute
Type
Description
Example request
curl -X POST https://api.complycube.com/v1/checks \
-H 'Authorization: <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"clientId":"CLIENT_ID",
"livePhotoId":"LIVE_PHOTO_ID",
"type": "age_estimation_check"
}'const check = await complycube.check.create("CLIENT_ID", {
livePhotoId: "LIVE_PHOTO_ID",
type: "age_estimation_check"
});check = cc_api.check.create(
'CLIENT_ID',
'age_estimation_check',
livePhotoId='LIVE_PHOTO_ID'
)$result = $ccapi->checks()->create('CLIENT_ID',
['type' => 'age_estimation_check',
'livePhotoId' => 'LIVE_PHOTO_ID']);var checkRequest = new CheckRequest {
clientId = "CLIENT_ID",
livePhotoId = "LIVE_PHOTO_ID",
type = "age_estimation_check"
};
var check = await checkApi.CreateAsync(checkRequest);Result object
Outcome
Breakdown
ageEstimationAnalysis object
ageEstimationAnalysis objectauthenticityAnalysis object
authenticityAnalysis object
