Build the future of biometric AR applications with our comprehensive SDK and APIs.
🚀 Beta SDK v0.8.2 Available
Early access for qualified developers and partners
Authenticate users via iris pattern recognition
{
"image_data": "base64_encoded_iris_image",
"user_id": "optional_user_identifier",
"confidence_threshold": 0.95
}
{
"status": "verified",
"confidence": 99.7,
"user_id": "UR84jk2L",
"timestamp": "2025-07-02T20:08:45Z",
"session_token": "eyJ0eXAiOiJKV1QiLCJhbGc..."
}
Retrieve real-time health monitoring data from smart lenses
?user_id=UR84jk2L
&metrics=glucose,pressure,temperature
&timeframe=1h
&format=json
{
"user_id": "UR84jk2L",
"timestamp": "2025-07-02T20:08:45Z",
"metrics": {
"glucose": {
"value": 92,
"unit": "mg/dL",
"status": "normal"
},
"intraocular_pressure": {
"value": 15,
"unit": "mmHg",
"status": "normal"
}
}
}
Send AR content to user's smart lenses display
{
"user_id": "UR84jk2L",
"content": {
"type": "notification",
"title": "Payment Authorized",
"message": "€25.99 - Coffee Shop",
"duration": 3000,
"position": "top-right"
},
"priority": "high"
}
{
"status": "delivered",
"message_id": "msg_789xyz",
"delivery_time": "2025-07-02T20:08:46Z",
"user_acknowledged": false
}
Comprehensive development kit including:
Confidential - Beta Testers Only
import { AugmentedIris } from 'augmentediris-sdk';
const client = new AugmentedIris({
apiKey: 'your-api-key',
environment: 'sandbox'
});
// Authenticate user
const result = await client.iris.authenticate({
imageData: capturedIrisImage,
confidenceThreshold: 0.95
});
if (result.status === 'verified') {
console.log('User authenticated:', result.user_id);
}
from augmentediris import Client
client = Client(
api_key='your-api-key',
environment='sandbox'
)
# Get health data
health_data = client.health.get_metrics(
user_id='UR84jk2L',
metrics=['glucose', 'pressure'],
timeframe='1h'
)
print(f"Glucose: {health_data.glucose.value} mg/dL")
Submit your application for early access to the AugmentedIris platform.
Get the development kit and start building your first biometric AR application.
Test your application in our sandbox environment before going live.
Need help getting started? Our developer support team is here to assist you.