Ship bank Direct Debit without building bank integrations yourself

Server-to-server API at /api/v1/dd — create mandates, poll bank verification, and submit debits from your billing system. API key or JWT auth; amounts in KES minor units.

Current endpoints

MethodPath
POST/api/v1/dd/mandates
POST/api/v1/dd/mandates/{id}/status/refresh
POST/api/v1/dd/mandates/{id}/debits
GET/api/v1/dd/debits/{id}

Postman UAT collection

End-to-end flows for mandate create, bank status refresh, and debit submission — ready for your finance team's UAT sign-off.

Read docs →

Implementation docs

Request shapes, error codes, env setup, and reconciliation patterns for subscription billing and recurring debits.

Read docs →

Quick start

curl -X POST https://api.example.com/api/v1/dd/mandates \
  -H "X-TZD-API-Key: tzdk_..." \
  -H "Content-Type: application/json" \
  -d '{"customerReference":"001","payerName":"Jane W.","currency":"KES",...}'