Connect RoofLinr With
Your Entire Workflow
Push measurement data directly into your CRM, sync proposal estimates with invoicing software, or use our REST API to build custom applications.
Supported CRMs & Tools
Sync details instantly, no double-entry required.
JobNimbus
Official IntegrationAutomatically push roof measurement reports, material lists, and proposal PDFs directly to JobNimbus contact folders.
AccuLynx
Official IntegrationTrigger RoofLinr automatic aerial scans directly from your AccuLynx lead workflows and sync estimates in real-time.
Zapier
Available via WebhooksConnect RoofLinr to 5,000+ apps. Automate emails, Google Drive uploads, CRM updates, and QuickBooks invoices.
CompanyCam
Beta AccessAttach high-resolution measurement diagrams and custom traces straight to your CompanyCam project photos.
Robust Developer API
and Webhook Events
Connect RoofLinr directly to your own backend. Order roof reports automatically when a customer books on your site, and receive a rich JSON payload of roof facets, pitch structures, and materials once it's computed.
// Example API Request: Create an automatic roof report order
const res = await fetch("https://api.rooflinr.com/v1/orders", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
address: "1600 Amphitheatre Pkwy, Mountain View, CA",
callback_url: "https://your-crm.com/webhooks/roof-data",
include_materials: true,
waste_factor: 15
})
});
const data = await res.json();
console.log("Order ID:", data.id);