Get API Access
Start integrating age verification in minutes. Tell us about your use case and we'll set up your account.
Built for Every Platform
Embed in Minutes
verification.html
<!-- Embed the verification widget -->
<iframe
src="https://ageevidence.com/embed/age_only
?apiKey=sk_verify_your_api_key
&externalId=user_123
&locale=en
&theme=dark"
allow="camera"
style="width: 100%; height: 600px; border: none;"
></iframe>
<script>
// Listen for verification events
window.addEventListener('message', (e) => {
if (e.origin !== 'https://ageevidence.com') return;
const { type, data } = e.data;
if (type === 'ae:complete') {
// Poll for final result
fetch(`/api/check-status/${data.verificationId}`)
.then(res => res.json())
.then(result => console.log(result));
}
});
</script>Full integration guide available at /docs/quickstart
Request Access
Fill out the form below and we'll get back to you with API credentials and integration support.