Live payment intelligence
See volume, success rate, latency, rail health, and operational alerts across every corridor in one command center.
Hoscoo is the interoperable orchestration and intelligence layer that routes account-to-account transfers, mobile money, cross-network bank-to-wallet payments, and card acquiring across East Africa — then turns payment behavior into routing, treasury, and finance decisions.
Try the developer sandboxTest every channel and corridor with live routing logic — no API key needed.Hoscoo starts with orchestration, then compounds value through telemetry, predictive routing, and treasury workflows that help merchants make better decisions every day.
Explore the dashboardSee volume, success rate, latency, rail health, and operational alerts across every corridor in one command center.
Forecast provider degradation before it hits customers, then act on transparent reroute recommendations.
Turn observed payment behavior into merchant liquidity, treasury visibility, and finance-ready workflows.
Move from reactive failover to a measurable system of record for reliability, risk, and settlement decisions.
Observe
Every payment path
Anticipate
Before rails degrade
Unlock
Treasury decisions
A single normalized request enters the Hoscoo engine. We validate and sign it, resolve the debit and credit legs, map the beneficiary alias, then clear through TIPS or our own acquiring stack — returning one consistent status lifecycle no matter the destination.
Your application
Pay by Bank
37+ banks · TIPS / A2A
Pay by MNO
6 wallets · TIPS / Wallet
Card & Direct
Visa, Mastercard, Amex · Hoscoo / Card
Every national instant rail in the region is a closed loop with its own currency, participant directory and settlement calendar. Hoscoo bridges them with a multi-currency ledger, an FX translation layer and per-corridor Nostro / Vostro position keeping.
Tanzania
Dar es Salaam
Bank of Tanzania
Kenya
Nairobi
Central Bank of Kenya
Uganda
Kampala
Bank of Uganda
Rwanda
Kigali
National Bank of Rwanda
One instruction, two switches, one FX conversion, one settlement position.
01Debit leg — Nairobi
KSh 5,000.00KES wallet debited, PIN authorised on the payer's handset
02Kenya switch
PesaLinkInstruction accepted by the KES rail and handed to Hoscoo
03FX translation
1 KES = 20.6082 TZSMid rate 20.7430 · 65 bps corridor spread · quote locked 30s
04Regional settlement
T+0 netKES Nostro debited, TZS Vostro credited, net position updated
05Credit leg — Dar es Salaam
TSh 103,041.02Least-cost rail selected, merchant account or wallet credited
FX spread
TSh 674.15
Merchant receives
TSh 103,041.02
| Corridor | Status | Settlement model | Target |
|---|---|---|---|
| TZS → TZSDomestic | Live | TIPS deferred net settlement, same day | Real time |
| KES → TZS | Pilot | Prefunded Nostro in KES, T+0 net position | Under 60s target |
| TZS → KES | Pilot | Prefunded Nostro in KES, T+0 net position | Under 60s target |
| UGX → TZS | Planned | Correspondent bank, T+0 net position | Design target under 60s |
| RWF → TZS | Planned | Correspondent bank, T+1 net position | Design target under 60s |
Tanzania is the licensed home market. Corridor availability outside Tanzania is indicative and subject to per-jurisdiction licensing and partner agreements — rates shown are illustrative, not quotable.
Wallet rails price as a pure percentage. Bank A2A carries a flat fee and thin basis points. That means the optimal route flips at a specific amount — and flips again at every wallet ceiling. The engine evaluates live fee structures, success rates and rail health on every instruction.
Crossover point
TSh 142,857
Derived from the fee matrix, not hardcoded. Below this, wallet wins. Above it, bank A2A wins.
Selected route
M-Pesa wallet payout
TSh 300
120 bps effective
Low-value retail. Below the TSh 142,857 crossover a pure-percentage wallet rail beats the bank rail's flat fee.
Saves TSh 1,238 vs the most expensive eligible rail
Live cost matrix
Trip a rail to watch failover
M-Pesa wallet payout
HealthyLowest landed cost among healthy eligible rails
120 bps
98.6% · 8.2s
TSh 300
Airtel Money payout
HealthyStandby · +TSh 38
135 bps
98.1% · 9.6s
TSh 338
Bank A2A open banking
HealthyStandby · +TSh 1,238
TSh 1,500 + 15 bps
99.2% · 12.8s
TSh 1,538
Selcom Pesa payout
DegradedEligible
110 bps
97.4% · 11.4s
TSh 275
Fee structures shown are indicative. In production the matrix is fed by per-participant pricing, rolling success rates and health probes, and the circuit breaker opens on latency or timeout thresholds rather than manually.
Choose an account type, pick a channel, and select any connected provider. Hoscoo normalizes and signs the request, clears it through TIPS or our own acquiring stack, and streams the transaction status back in real time — the same flow your customers would experience.
Every licensed participant on TIPS is reachable through Hoscoo, from tier-one commercial banks to community microfinance and mobile money wallets.
Commercial, development, community & microfinance
Every national USSD wallet operator
Direct card acquiring on our own BoT-regulated switch
Move money from any bank account to any mobile wallet — and back — with beneficiary aliases resolved automatically before clearing.
474
directional bank ↔ wallet pairs
Initiate a payment on any of the five channels, then poll a single status endpoint that returns the same lifecycle everywhere. Every response carries an HMAC-SHA256 signature in the X-Hoscoo-Signature header. The demo below is powered by these exact routes running in this app.
curl https://api.hoscoo.co.tz/v1/initiate-payment \
-H "Authorization: Bearer $HOSCOO_KEY" \
-H "Content-Type: application/json" \
-d '{
"amount": 45000,
"currency": "TZS",
"channel": "CROSS_BANK_TO_MNO",
"accountType": "BUSINESS",
"source": {
"providerCode": "CRDB",
"accountIdentifier": "0150123456789"
},
"destination": {
"providerCode": "VODACOM_MPESA",
"accountIdentifier": "0754123456"
},
"reference": "INV-2043"
}'{
"transactionId": "HSC-...",
"status": "PENDING_AUTHORIZATION",
"tipsReference": "TIPS-...",
"channel": "CROSS_BANK_TO_MNO",
"source": { "kind": "BANK", "direction": "DEBIT", ... },
"destination": { "kind": "MNO", "direction": "CREDIT", ... },
"beneficiary": {
"status": "MAPPED",
"registeredName": "A. MWAKALINGA",
"aliasType": "ACCOUNT_TO_PHONE"
},
"signature": { "algorithm": "HMAC-SHA256", "keyId": "hsc_live_..." },
"statusUrl": "/api/payment-status?transactionId=HSC-..."
}GET /api/payment-status?transactionId=hos_txn_8Q2K...
-H "Authorization: Bearer $HOSCOO_KEY"{
"transactionId": "HSC-...",
"status": "COMPLETED",
"isTerminal": true,
"crossNetwork": true,
"timeline": [
{ "status": "PENDING_AUTHORIZATION", "at": "..." },
{ "status": "AUTHORIZED", "at": "..." },
{ "status": "ROUTING", "at": "..." },
{ "status": "SETTLING", "at": "..." },
{ "status": "COMPLETED", "at": "..." }
],
"settledAt": "..."
}Stop maintaining separate connections for M-Pesa, Tigo, Airtel, and commercial banks. Join the early access cohort to secure zero-rated base fees for your first 3 months.
Choose your path
We will route your request to the right early access track and follow up with the next useful step.
Contact us
Talk to the Hoscoo team about payment orchestration, TIPS connectivity, and building reliable payment experiences in Tanzania.