Live Demo
See how LoomAPI works with interactive examples and code samples
Start Verification
Initiate a verification session by calling the /verify/start endpoint with user agent and IP address.
javascript
const response = await fetch('https://project-halo-api.onrender.com/verify/start', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-tenant-api-key': 'your-api-key-here',
},
body: JSON.stringify({
userAgent: 'Mozilla/5.0...',
ip: '192.168.1.1',
}),
});
const { verificationId, status } = await response.json();
console.log('Verification ID:', verificationId);Ready to try it yourself?
Get an instant API key and start testing the verification flow in seconds. No sign-up required — test mode is free.