Data Bundles API
List Data Packages
GET/api/v1/data/packages
Retrieve available data bundles for Ghana mobile networks. Returns packages for MTN, Telecel (Vodafone), and AirtelTigo with current pricing and availability.
Supported Networks
🟡
MTN Ghana
mtn
🔴
Telecel
telecel
🔵
AirtelTigo
airteltigo
Select Language
REQUEST
curl -X GET \
https://api.sendcomms.com/api/v1/data/packages \
-H "Authorization: Bearer YOUR_API_KEY"
# Filter by network
curl -X GET \
"https://api.sendcomms.com/api/v1/data/packages?network=mtn" \
-H "Authorization: Bearer YOUR_API_KEY"Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| network | string | Optional | Filter by network: mtn, telecel, airteltigo |
Response Codes
200Success401Unauthorized503Service unavailable
Response
Success Response
Returns available data packages grouped by network with pricing information.
{
"success": true,
"data": {
"country": "Ghana",
"country_code": "GH",
"currency": "GHS",
"networks": {
"mtn": [
{
"network": "MTN Ghana",
"network_code": "mtn",
"capacity_gb": 1,
"capacity_mb": 1000,
"price": { "amount": 4.72, "currency": "GHS" },
"provider_price": { "amount": 4.10, "currency": "GHS" },
"margin_percent": 15,
"in_stock": true
},
{
"network": "MTN Ghana",
"network_code": "mtn",
"capacity_gb": 5,
"capacity_mb": 5000,
"price": { "amount": 23.58, "currency": "GHS" },
"provider_price": { "amount": 20.50, "currency": "GHS" },
"margin_percent": 15,
"in_stock": true
}
],
"telecel": [...],
"airteltigo": [...]
},
"source": "database"
}
}Sample Pricing
All prices are in Ghana Cedis (GHS). Prices shown include a 15% service margin.
MTN Ghana
1 GBGH₵ 4.72
5 GBGH₵ 23.58
10 GBGH₵ 47.15
20 GBGH₵ 89.70
Telecel
5 GBGH₵ 22.43
10 GBGH₵ 41.98
20 GBGH₵ 80.27
50 GBGH₵ 197.23
AirtelTigo
1 GBGH₵ 4.54
5 GBGH₵ 22.43
10 GBGH₵ 44.28
50 GBGH₵ 218.50
