Products
A unified API for warehouses, inventory, orders and carrier integrations—designed for high-volume logistics, multi-site warehouses and systems that require robust, ERP-friendly data models.
The FlexOps Core Services API gives you a single, consistent API surface to manage the end-to-end shipping lifecycle: warehouses, inventory, orders, shipments, carrier rating, label creation, tracking, and reconciling billed labels across carriers.
Modeling that supports hundreds of warehouses and simultaneous throughput with predictable billing and rate-shopping controls.
Native USPS, UPS and FedEx integrations with rating, manifests and tracking support. We handle carrier contracts and error handling for you.
Data models crafted to map easily to billing, accounting and ERP systems so you can reconcile rapidly and automate billing workflows.
Warehouse primitives such as locations, bins, pick lists and allocation flows for WMS-driven workflows.
POST /v1/shipments
Content-Type: application/json
Authorization: Bearer YOUR_API_KEY
{
"orderId": "ORD-123",
"warehouseId": "WH-SF-01",
"carrier": "ups",
"service": "ground",
"packages": [
{ "weightLb": 3.2, "lengthIn": 12, "widthIn": 10, "heightIn": 4 }
]
}Response includes a purchased label, tracking number, and carrier confirmation.
Quick examples to create a shipment using cURL and the JavaScript SDK.
curl -X POST https://api.flexops.io/v1/shipments \
+ -H "Authorization: Bearer YOUR_API_KEY" \
+ -H "Content-Type: application/json" \
+ -d '{
+ "orderId": "ORD-123",
+ "warehouseId": "WH-SF-01",
+ "carrier": "ups",
+ "service": "ground",
+ "packages": [{ "weightLb": 3.2, "lengthIn": 12, "widthIn": 10, "heightIn": 4 }]
+ }'const resp = await fetch('https://api.flexops.io/v1/shipments', {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ 'Authorization': 'Bearer YOUR_API_KEY'
+ },
+ body: JSON.stringify({
+ orderId: 'ORD-123',
+ warehouseId: 'WH-SF-01',
+ carrier: 'ups',
+ service: 'ground',
+ packages: [{ weightLb: 3.2, lengthIn: 12, widthIn: 10, heightIn: 4 }]
+ })
+});
+const data = await resp.json();
+console.log(data);Simple, predictable pricing designed for high-volume operations.
Free sandbox for development and testing. Quotas and sample data included.
Per-label pricing with volume discounts for growing operations.
Custom SLAs, SSO, and enterprise billing contracts.
We provide SDKs and sample code for common languages; the documentation includes comprehensive examples and code snippets.