Enterprise API Developer Center
v3.0 REST SpecsBuild high-performance telecom applications, automated VTU portals, and instant ledger systems using our unified gateway.
Authentication & Credentials
All requests require Bearer token passing via authorization headers.Never hardcode production credentials into client-side code structures or public repositories.
Avg Latency
~140ms Global
Uptime SLA
99.99% Guaranteed
Rate Limits
120 req / minute
Core API Endpoints & Specs
Interactive multi-language framework request generators
GET
/wallet/balance
Retrieve real-time liquidity balance.
curl -X GET "https://api.azabazaar.com/wallet/balance" \ -H "Authorization: Bearer azb_live_9f88c2e11a7b450099e2a31bbcf884102c" \ -H "Accept: application/json"
GET
/vtu/plans?network_id=1&category=data
Query available bundle catalogs.
curl -X GET "https://api.azabazaar.com/vtu/plans?network_id=1&category=data" \ -H "Authorization: Bearer azb_live_9f88c2e11a7b450099e2a31bbcf884102c" \ -H "Accept: application/json"
POST
/vtu/purchase
Instantly vend airtime or data packages.
curl -X POST "https://api.azabazaar.com/vtu/purchase" \ -H "Authorization: Bearer azb_live_9f88c2e11a7b450099e2a31bbcf884102c" \ -H "Content-Type: application/json" \ -d '{ "service_category": "data", "phone": "08031234567", "service_id": "7c53ec7d-ad49-11f1-bb13-0200004e9ba4", "network_id": 1 }'