AAMOS API Documentation
Build powerful applications with real-time visual intelligence, identity verification, and situational awareness APIs.
Quick Start
Get up and running with the AAMOS API in three steps.
Get your API key
Sign up at aamos.ai/signup and create an API key from your dashboard. Keys follow the format ak_live_...
Make your first call
Pass your key in the Authorization header on every request.
curl https://api.aamos.ai/v1/vims/objects \ -H "Authorization: Bearer ak_live_YOUR_KEY"
Handle the response
All endpoints return JSON. Check the HTTP status code — 2xx means success, 4xx/5xx means error.
{
"objects": [
{
"object_id": "obj_abc123",
"baseline_count": 3,
"last_analysis": "2025-01-15T10:30:00Z"
}
]
}
Authentication
All requests must include your API key in the Authorization header.
Include this header in every API request. Keep your key secret — never expose it in client-side code.
API Reference
Explore all available AAMOS APIs.
VIMS
Visual Integrity Monitoring System. Detect changes, anomalies, and deviations in monitored objects using computer vision.
Reality Alerts
Subscribe to real-world event streams and receive webhook notifications when conditions match your criteria.
KYZ
Know Your Zone — identity verification with liveness detection, document scanning, and hosted or API flow options.
AAMOS Modules
Incident management and deviation detection APIs for operational intelligence and asset monitoring workflows.
Base URL & Versioning
The current API version is v1. All endpoints are prefixed with:
https://api.aamos.ai/v1