Complete API documentation, integration guides, and code examples to help you integrate Honrly's AI-powered cheating detection into your applications and workflows.
// Create a new monitoring session
const response = await fetch('https://api.honrly.com/v1/sessions', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
name: 'Technical Interview - John Doe',
duration: 3600, // 1 hour
notify_on_detection: true,
}),
});
const session = await response.json();
console.log('Session ID:', session.id);
console.log('Join URL:', session.join_url);Quick start guides and installation instructions
Complete API documentation with endpoints and examples
Step-by-step guides for popular platforms
Security best practices and compliance information
RESTful API with comprehensive endpoints for all Honrly features
/v1/sessionsCreate a new monitoring session
/v1/sessions/:idRetrieve session details
/v1/sessions/:id/detectionsGet detection results
/v1/webhooksRegister a webhook endpoint
/v1/accountGet account information
/v1/usageRetrieve usage statistics
Step-by-step guides for integrating Honrly with your favorite tools
Our developer support team is here to help you build the perfect integration.