Endpoints개별 연령 인증 방식

얼굴 기반 연령 추정 수행

얼굴 기반 연령 추정을 시작하고 iframe에 표시할 호스팅 URL을 반환합니다. 플레이어에게 셀피 촬영을 요청하고, 모델이 이를 바탕으로 연령 범위를 추정합니다. 신분증이나 계정은 전혀 필요하지 않습니다. 플레이어는 반환된 URL에서 인증을 완료합니다. 결과는 `/age-verification/get-status` 또는 웹훅으로 확인하십시오.

POST
/age-verification/perform-facial-age-estimation
AuthorizationBearer <token>

In: header

Request Body

application/json

Perform facial age estimation

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/age-verification/perform-facial-age-estimation" \  -H "Content-Type: application/json" \  -d '{    "jurisdiction": "US-CA",    "criteria": {}  }'
{  "id": "12345678-1234-1234-1234-123456789012",  "url": "https://example.com/verify",  "shortUrl": "https://example.com/s/12345678-1234-1234-1234-123456789012?pid=42&s=qr"}