Intra-ECOWAS trade represents only 12% of African trade (vs 40% intra-EU). One reason: border friction. A Dakar → Abidjan truck crosses Senegal-Mali-Guinea-CI = 4 controls + 18-36h customs queues. Digital track-and-trace + ALISA solves 50-70% of the problem.
TL;DR
- ALISA (Inter-State Logistics Application for Sahel-Africa): common ECOWAS platform for cross-border cargo tracking.
- Real-time GPS tracking + customs alerts + digital documents.
- Benefits: -50% border time, -40% logistics costs, +traceability.
Cross-border ECOWAS cargo workflow
`
[Truck loaded Dakar]
↓
[Digital docs: invoice, BL, origin certificate, EUR.1]
↓
[ALISA declaration → notifies customs at stages]
↓
[Senegal-Mali Diboli border: scan + GPS + scale]
↓
[Mali (transit)]
↓
[Mali-Guinea border]
↓
[Guinea (transit)]
↓
[Guinea-CI border]
↓
[Abidjan arrival]
`
At each border, ALISA pre-fill + QR scan = -60% queue time.
Required digital documents
| Document | Issuer | Format |
|---|---|---|
| Commercial invoice | Exporter | PDF + e-signature |
| Bill of Lading (BL) | Carrier | PDF + tracking number |
| UEMOA origin certificate | Chamber of commerce | PDF + QR validation |
| Phytosanitary certificate | DPV | PDF + QR validation |
| TIR carnet (if applicable) | Transport association | |
| Customs declaration | Forwarder | XML + PDF |
Track-and-trace architecture
`prisma
model CrossBorderShipment {
id String @id @default(cuid())
shipmentRef String @unique
originCountry String
destinationCountry String
transitCountries String[]
documents Json
vehicleReg String
driverId String
status String
borderEvents BorderEvent[]
gpsLog GpsLog[]
startedAt DateTime
expectedArrival DateTime
actualArrival DateTime?
}
model BorderEvent {
id String @id @default(cuid())
shipmentId String
shipment CrossBorderShipment @relation(fields: [shipmentId], references: [id])
border String
arrivedAt DateTime
clearedAt DateTime?
durationMin Int?
customsOfficer String?
documents String[]
weighingResult Float?
notes String?
}
model GpsLog {
id String @id @default(cuid())
shipmentId String
shipment CrossBorderShipment @relation(fields: [shipmentId], references: [id])
Need a professional website?
Kolonell builds websites that attract clients, optimized for the Sénégalese market. Free quote in 2 minutes.
lat Float
lng Float
speed Float
recordedAt DateTime
}
`
Driver app + border workflow
`tsx
'use client';
export default function BorderCrossingPage() {
return (
const photos = await capturePhotos(['document_stamps', 'vehicle', 'cargo']); await fetch('/api/border-events', { method: 'POST', body: JSON.stringify({ shipmentId, border: 'Diboli SN-ML', arrivedAt: new Date(), photos, customsOfficer: officerName, }), }); }}> Declare border arrival Confirm crossing (after stamp)Diboli border (Senegal → Mali)
);
}
`
Shipper + consignee notifications
`
[Truck arrives border] → Email + WhatsApp shipper + consignee
[Customs stamp received] → Email + WhatsApp + ETA updated
[Truck departs] → Notif
[Destination arrival] → Final notif + ePOD
`
Real case — SN-CI cross-border carrier
| Metric | Before ALISA | After 12 months |
|---|---|---|
| Total Dakar-Abidjan time | 4-6 days | 2.5-3 days |
| Average border time | 18h | 4h |
| Lost docs/month | 5 | 0 |
| On-time delivery rate | 62% | 91% |
| Gross margin per trip | 18% | 27% |
FAQ
Q: ALISA available today?
A: Pilot since 2023 on main ECOWAS axes. Full roll-out expected 2027-28. Meanwhile, similar private solutions (Kobiri, Lori, Sendy).
Q: Carrier investment?
A: Driver tablet 80K + SaaS subscription 25K XOF/truck/month. 3-6 month ROI on time + dispute reduction.
Q: UEMOA tax compliance?
A: Transit cargo non-taxable but UEMOA declaration + UEMOA EUR.1 origin certificate = mandatory.
Conclusion
Cross-border ECOWAS track-and-trace = 2026 African logistics transformation. Friction reduction = better intra-African trade competitiveness. Early-mover players take durable commercial lead.
Mohamed Bah
Fondateur, Kolonell
Passionate about digital and entrepreneurship in Africa, Mohamed has been helping Sénégalese businesses with their digital transformation since 2020. Founder of Kolonell, he believes every SME deserves a professional and accessible online présence.
