Authorization
default Authorization<token>
Use a public key (pk./pk_test.) for payment initialization. Use a secret key (sk./sk_test.) for sensitive operations (transfers, refunds, balance), or a restricted key (rk./rk_test.) scoped to specific permissions. The _test. variant of any key selects the sandbox environment, there is no separate sandbox URL. Never expose your secret key in client-side code.
In: header
Request Body
application/json
beneficiarystringrequired
amountnumberrequired
Must be at least 0.01.
currencystring | null
Must match an existing stored value. Must be 3 characters.
descriptionstring | null
Must not be greater than 255 characters.
reasonstring | null
Must not be greater than 255 characters.
referencestring | null
Must not be greater than 255 characters.
metadataobject | null
Response Body
application/json
application/json
application/json
application/json
application/json
curl -X POST "https://api.wajub.com/transfers" \ -H "Content-Type: application/json" \ -d '{ "beneficiary": "architecto", "amount": 39 }'{ "code": 202, "status": "Accepted", "message": "Transfer initiated", "transfer": { "id": "po_01JXXX", "reference": "N7vW4mX1kQ8", "amount": 10000, "currency": "XAF", "status": "pending", "complete": false, "created_at": "2026-01-15T14:00:00Z" }}Transfer initiated