Connect Your Entire
Logistics Stack
InstaFreight is built API-first so it fits into your existing workflows — not the other way around. Connect ERPs, TMS, carriers, customs systems, and more.
Everything Connects
From legacy ERPs to modern cloud platforms — InstaFreight speaks the language of global trade.
ERP Systems
Sync shipments, invoices, and orders with your enterprise resource planning system in real time.
TMS Platforms
Bi-directional sync with transportation management systems for end-to-end shipment visibility.
Customs Systems
Automate customs filing and HS code validation directly from InstaFreight shipments.
Carrier APIs
Pull real-time rates and book directly with ocean, air, and road carriers without leaving the platform.
Accounting & Finance
Push invoices and payment records to your accounting software automatically.
Analytics & BI
Stream shipment and financial KPIs to your business intelligence dashboards.
Communication
Trigger notifications and workflow events via your preferred channels.
Cloud Storage
Sync documents and attachments to cloud storage automatically after generation.
Build on the
InstaFreight API
Our REST API gives you programmatic access to quotations, shipments, documents, invoices, and your entire freight workflow. Build custom integrations, automate data flows, and extend the platform to fit your exact needs.
- OpenAPI / Swagger documentation
- JWT + API key authentication
- Webhook support for real-time events
- Rate-limited per endpoint for fairness
- Sandbox environment for safe testing
// Create a new quotation
const response = await fetch(
'https://instafreight.global/api/v1/quotations',
{
method: 'POST',
headers: {
'Authorization': `Bearer ${apiKey}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
origin: 'Alexandria, Egypt',
destination: 'Rotterdam, NL',
mode: 'sea_fcl',
cargo: {
weight_kg: 14500,
containers: ['20GP'],
hazmat: false,
},
}),
}
);
const { quotation_id, status } = await response.json();
// → { quotation_id: "QT-20260613-A1B2", status: "pending" }
Real-Time Webhooks
Subscribe to events and get instant notifications when anything changes in your freight workflow.
quotation.created
offer.accepted
shipment.status_changed
invoice.paid
delivery.confirmed
notification.sent
Need a Custom Integration?
Our team works with Enterprise clients to build direct connectors to any system in your stack — customs portals, legacy TMS, freight exchanges, or proprietary platforms.
Discuss Your Integration