Update Available

A new version of InspectorScan is ready.

API Documentation

Integrate InspectorScan into your existing systems. RESTful API with JSON responses.

OAuth 2.0 + API Keys
REST + JSON
Rate Limited

Quick Start

// 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',
  }),
});
API access requires Professional or Enterprise plan. View plans

Available Endpoints

Inspections API

Create, read, update inspections. List by workflow type, status, date range. Attach evidence.

GET /api/v1/inspections
POST /api/v1/inspections
GET /api/v1/inspections/:id
PATCH /api/v1/inspections/:id/status

Reports API

Generate inspection reports, retrieve report history, export to PDF.

POST /api/v1/reports/generate
GET /api/v1/reports
GET /api/v1/reports/:id/pdf

Findings & NCR API

Log findings, create NCRs, update severity, link to inspections.

POST /api/v1/findings
GET /api/v1/findings
POST /api/v1/ncr
PATCH /api/v1/ncr/:id

Drawings API

Upload engineering drawings, link to inspections and workflows.

POST /api/v1/drawings/upload
GET /api/v1/drawings
GET /api/v1/drawings/:id

Team API

Manage team members, roles, permissions. Enterprise only.

GET /api/v1/team/members
POST /api/v1/team/invite
PATCH /api/v1/team/members/:id/role

Calculators API

Run engineering calculations programmatically. Returns results with standards references.

POST /api/v1/calc/heat-input
POST /api/v1/calc/pressure-test
POST /api/v1/calc/thickness

Ready to integrate?

Contact our team for API keys and integration support