AugmentedIris Developer Platform

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

API Reference

POST /v1/iris-scan

Authenticate users via iris pattern recognition

Request Body

{
  "image_data": "base64_encoded_iris_image",
  "user_id": "optional_user_identifier",
  "confidence_threshold": 0.95
}

Response

{
  "status": "verified",
  "confidence": 99.7,
  "user_id": "UR84jk2L",
  "timestamp": "2025-07-02T20:08:45Z",
  "session_token": "eyJ0eXAiOiJKV1QiLCJhbGc..."
}

GET /v1/health-data

Retrieve real-time health monitoring data from smart lenses

Query Parameters

?user_id=UR84jk2L
&metrics=glucose,pressure,temperature
&timeframe=1h
&format=json

Response

{
  "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"
    }
  }
}

POST /v1/ar-overlay

Send AR content to user's smart lenses display

Request Body

{
  "user_id": "UR84jk2L",
  "content": {
    "type": "notification",
    "title": "Payment Authorized",
    "message": "€25.99 - Coffee Shop",
    "duration": 3000,
    "position": "top-right"
  },
  "priority": "high"
}

Response

{
  "status": "delivered",
  "message_id": "msg_789xyz",
  "delivery_time": "2025-07-02T20:08:46Z",
  "user_acknowledged": false
}

Download SDK

AugmentedIris SDK v0.8.2

Comprehensive development kit including:

Download SDK (v0.8.2)

Confidential - Beta Testers Only

Code Examples

JavaScript SDK

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);
}

Python SDK

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")

Getting Started

1️⃣

Apply for Beta Access

Submit your application for early access to the AugmentedIris platform.

2️⃣

Download SDK

Get the development kit and start building your first biometric AR application.

3️⃣

Deploy & Test

Test your application in our sandbox environment before going live.

Developer Support

Need help getting started? Our developer support team is here to assist you.