Overview
Mozaca is the product factory behind Fedha white-label mobile money, Hazina digital banking and treasury, Zent stablecoin-to-local-money digital finance, and future client-configured products.
The products reuse identity, ledger, wallet, payment, policy, compliance, audit, reconciliation, reporting, and developer engines. Market configuration selects currencies, languages, rails, limits, and regulatory controls; each client deployment keeps its own brand, integrations, roles, infrastructure, and data boundary.
Public examples are representative integration contracts. Product implementations contain deeper service and channel coverage, while final schemas, provider routes, and environment URLs remain deployment-specific.
Integration path
Most teams start with a product walkthrough, then move into a sandbox review when the operating model is clear.
- 01
Request a walkthrough
Share product surface, client model, region, rails, expected volume, provider dependencies, and launch timeline.
- 02
Map the operating model
Confirm identity, ledger, controls, workspaces, evidence, partner dependencies, and readiness boundaries.
- 03
Review sandbox access
Receive API shape, webhook events, test data, and integration milestones for the selected environment.
- 04
Prepare pilot scope
Define corridor, monitoring, reporting, and acceptance criteria for the operating scope.
Base URL
Use the environment-specific base URL provided during sandbox review. The examples below use the public guide base URL until approved sandbox and production environments are issued.
https://api.mozacalabs.com/v1First request
In the approved API, every authenticated request is sent from your backend, not from client-side browser code. Include an authorization token and an idempotency key for write operations.
curl https://api.mozacalabs.com/v1/transfers \
-X POST \
-H "Authorization: Bearer MOZACA_SANDBOX_KEY" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: tr-demo-001" \
-d '{
"source": "wallet_kes_184250",
"destination": {
"type": "mobile_money",
"network": "partner_mobile_money",
"phone": "+2547..."
},
"amount": "2500.00",
"currency": "KES"
}'Related docs