Feature
Public API
REST API with full documentation and webhooks. Build custom integrations and automate your workflows.
Full REST API
/jobsCreate, read, update jobs and estimates
/customersManage customer records and history
/leadsImport leads and track conversions
/invoicesGenerate and send invoices
/crewsManage crews and assignments
/webhooksReal-time event notifications
Simple to Use
// Create a new job
const response = await fetch('https://api.moversflux.com/v1/jobs', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
customer_id: 'cust_123',
origin: '123 Main St, Phoenix, AZ',
destination: '456 Oak Ave, Scottsdale, AZ',
scheduled_date: '2024-03-15',
job_type: 'LOCAL',
}),
});
const job = await response.json();
console.log(job.id); // job_abc123Real-Time Webhooks
Get notified instantly when events happen. Build real-time integrations without polling.
job.createdjob.completedinvoice.paidlead.convertedestimate.acceptedcrew.checked_inUse Cases
Sync with your existing CRM
Push data to data warehouses
Trigger Slack/Teams notifications
Update custom dashboards
Integrate with Zapier or Make