KYC Age Verification

KYC Age Verification API

0.2.0OAS 3.0

CAMARA KYC Age Verification API. Verifies whether the subscriber associated with a phone number is at least a given minimum age.

API Base URL
  • Server 1:https://api.pxg.konera.com/camara

    Production CAMARA API Gateway

Security
OAuth2ClientCredentials (oauth2)

Client Credentials OAuth Flow

Token URL: https://auth.konera.com/oauth2/token

Scopes:

  • kyc-age-verification.read - Verify minimum age for a subscriber

KYC Age Verification

KYC age verification APIs

Verify minimum age for a subscriber

Verifies whether the subscriber associated with the given phone number is at least the specified minimum age.

post
https://api.pxg.konera.com/camara/kyc-age-verification/v0.2/verify

Headers

x-correlation-idstring

Correlation ID for request tracing

Body

application/json

KycAgeVerificationRequest

phoneNumberstringrequired

MSISDN in E.164 format

Example:+14155550123

minimumAgeintegerrequired

Minimum age in years that the subscriber must meet or exceed.

Example:18

Response

application/json

Age verification result returned

KycAgeVerificationResponse

ageVerifiedbooleanrequired

Indicates whether the subscriber is at least the requested minimum age.

Example:true

assessedAtstring | null(date-time)

Time when the age verification was performed.

Example:2026-02-10T10:00:00Z

post/kyc-age-verification/v0.2/verify

Body

{ "phoneNumber": "+14155550123", "minimumAge": 18 }
 
application/json

KycAgeVerificationRequest

object
phoneNumberstringrequired

MSISDN in E.164 format

Example:+14155550123

minimumAgeintegerrequired

Minimum age in years that the subscriber must meet or exceed.

Example:18

Example

KycAgeVerificationResponse

object
ageVerifiedbooleanrequired

Indicates whether the subscriber is at least the requested minimum age.

Example:true

assessedAtstring(date-time)

Time when the age verification was performed.

Example:2026-02-10T10:00:00Z

Example