Logistics built for growth
From first orders to international scale — Rave plugs into your stack with REST APIs, bulk tools and volume pricing.
Developer-first API
REST + Webhooks. Create labels, track shipments and reconcile billing in code.
Bulk shipment uploads
Drop a CSV with 10,000 orders. We dispatch, label and route them in minutes.
Custom contracts
Volume discounts, SLAs and Net-30 terms for high-throughput operations.
Dedicated account team
Named manager, 24/7 support channel and quarterly business reviews.
// Create a shipment
await fetch("https://api.rave.com/v1/shipments", {
method: "POST",
headers: { Authorization: `Bearer ${API_KEY}` },
body: JSON.stringify({
from: { city: "Lagos", country: "NG" },
to: { city: "London", country: "GB" },
weight_kg: 2.4,
speed: "express"
})
});