Feature

Public API

REST API with full documentation and webhooks. Build custom integrations and automate your workflows.

Full REST API

/jobs

Create, read, update jobs and estimates

/customers

Manage customer records and history

/leads

Import leads and track conversions

/invoices

Generate and send invoices

/crews

Manage crews and assignments

/webhooks

Real-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_abc123

Real-Time Webhooks

Get notified instantly when events happen. Build real-time integrations without polling.

job.created
job.completed
invoice.paid
lead.converted
estimate.accepted
crew.checked_in

Use Cases

Sync with your existing CRM
Push data to data warehouses
Trigger Slack/Teams notifications
Update custom dashboards
Integrate with Zapier or Make

Build powerful integrations

API access included in Enterprise plan.