Supercharge your delivery with our carrier network
Plug our carrier network into your business. Whether you need a managed order dashboard or a raw delivery API, we have a plan that fits.
Choose your integration model
Two ways to use our platform. Or combine both.
full_serviceFull Service
Managed listings, orders, and delivery dashboard
Create product or service listings, let customers place orders through your store, and we dispatch a carrier for each order. Includes a web dashboard for your team.
- Order management dashboard
- Product/service listings
- Automatic carrier dispatch
- Webhook notifications
- Wallet-based billing
Best for: retail stores, restaurants & services
delivery_apiDelivery API
Pure programmatic dispatch. Your system, our carriers.
Already have your platform? Send us a pickup and dropoff, we dispatch a carrier and fire webhooks on every status change. Distance-based pricing, minimum GHS 15.
- Single API call per delivery
- Price estimate endpoint
- Signed webhook events
- External reference ID support
- Wallet-based billing
Best for: e-commerce, logistics platforms & apps
Need both models? Contact us — the both plan enables everything.
How DaaS works
From sign-up to your first dispatch in under an hour.
Sign up
Register your business. Verify your email. Your account is reviewed within 24 hours — you'll get an email when approved.
Fund your wallet
Top up your delivery wallet via Paystack. Funds are deducted per delivery dispatched. Top up anytime, no subscription.
Send orders via API
POST to /api/v1/deliveries with a pickup and dropoff address. We dispatch a verified carrier within minutes.
Get webhook events
Configure your HTTPS webhook URL. We sign every event with HMAC-SHA256 and retry failed deliveries automatically.
Feature comparison
full_servicedelivery_apibothStart dispatching in minutes
One API call. That's all it takes to dispatch a verified carrier to your customer.
// POST /api/v1/deliveries
const response = await fetch('https://daas.errand4me.com/api/v1/deliveries', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': 'em_live_your_api_key_here',
},
body: JSON.stringify({
external_ref: 'ORDER-001',
pickup_address: '15 Independence Ave, Accra',
pickup_contact_name: 'Store Manager',
pickup_contact_phone: '+233201234567',
dropoff_address: '42 Ring Road East, Accra',
dropoff_contact_name: 'John Doe',
dropoff_contact_phone: '+233209876543',
package_description: 'Electronics - handle with care',
package_fragile: true,
}),
})
const { data } = await response.json()
// { tracking_id: "uuid", status: "dispatched",
// price: { total: 25, currency: "GHS" }, errand_id: "..." }No credit card required. Approved within 24 hours.