Update Available
A new version of InspectorScan is ready.
Integrate InspectorScan into your existing systems. RESTful API with JSON responses.
// Authentication
const response = await fetch('https://api.inspectorscan.com/v1/inspections', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
});
// Create Inspection
const inspection = await fetch('https://api.inspectorscan.com/v1/inspections', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
workflowType: 'welding',
templateId: 'weld-visual-001',
projectName: 'Pipeline Section A',
location: 'Site 4, Joint W-142',
}),
});Create, read, update inspections. List by workflow type, status, date range. Attach evidence.
Generate inspection reports, retrieve report history, export to PDF.
Log findings, create NCRs, update severity, link to inspections.
Upload engineering drawings, link to inspections and workflows.
Manage team members, roles, permissions. Enterprise only.
Run engineering calculations programmatically. Returns results with standards references.