Developer API
Integrate Ghana's trusted delivery network directly into your website, POS system, ERP, or mobile app. Create delivery orders with a single API call.
Create delivery orders instantly via a single API call from any platform.
App Key + Access Token credential system. Rotate keys anytime without downtime.
Documents, Electronics, Food, Fragile, Clothing, Cosmetics, Furniture and more.
Standard, Express, Economy, and Freight — restrict clients to specific types.
Mobile Money (MTN, Vodafone, AirtelTigo), Card, Wallet, or Cash on delivery.
Assign pickup and drop agents directly when creating orders.
Regenerate API credentials instantly without recreating the client.
Every order gets a unique order number for tracking and reference.
Contact Activezoon to get your API credentials provisioned by our admin team.
Receive your unique App Key and Access Token to authenticate API calls.
POST to /api/third-party/orders with sender, receiver and package details.
Orders are processed with a unique order number for real-time tracking.
STANDARD
Regular delivery, cost-effective
EXPRESS
Fast delivery, priority handling
ECONOMY
Budget-friendly, longer window
FREIGHT
Large/bulk shipments
curl -X POST https://activezoonexpress.com/api/third-party/orders \
-H "Content-Type: application/json" \
-H "X-App-Key: ak_your_app_key" \
-H "X-Access-Token: at_your_access_token" \
-d '{
"senderName": "John Doe",
"senderPhone": "+233501234567",
"senderAddress": "123 Main St, Accra",
"senderLat": 5.6037,
"senderLng": -0.1870,
"receiverName": "Jane Smith",
"receiverPhone": "+233509876543",
"receiverAddress": "456 Queen St, Kumasi",
"receiverLat": 6.6971,
"receiverLng": -1.5567,
"serviceType": "STANDARD"
}'| Field | Type | Required | Description |
|---|---|---|---|
| senderName | string | Yes | Name of the sender |
| senderPhone | string | Yes | Sender's phone number |
| senderAddress | string | Yes | Sender's pickup address |
| receiverName | string | Yes | Name of the recipient |
| receiverPhone | string | Yes | Recipient's phone number |
| receiverAddress | string | Yes | Delivery address |
| serviceType | enum | No | STANDARD | EXPRESS | ECONOMY | FREIGHT (default: STANDARD) |
| parcelCategory | enum | No | DOCUMENTS | ELECTRONICS | FRAGILE | FOOD | CLOTHING | OTHER |
| parcelSize | enum | No | SMALL | MEDIUM | LARGE | EXTRA_LARGE |
| paymentMethod | enum | No | CARD | WALLET | MOBILE_MONEY | CASH |
| mobileMoneyProvider | enum | Conditional | mtn | vodafone | airtelTigo (required if paymentMethod=MOBILE_MONEY) |
All third-party API requests require two headers:
ak_, Access Tokens with at_Contact our team to get your API credentials and start creating delivery orders from your platform.