Intégration et APIs
Bénéficiez d'une solution d'encaissement (cash-in) et de remboursement (cash-out) hautement sécurisée et performante grâce à nos APIs et outils d'intégration.

POST /v1/payout
Déclenchez un versement vers un portefeuille Mobile Money ou un compte bancaire.
Requête
curl -X POST https://sandbox.api.mokmoney.com/v1/payin \
-H 'Authorization: Bearer mok_sandbox_sk_XXXXXXXX' \
-H 'Content-Type: application/json' \
-d '{"amount":10000,"currency":"XAF","phone":"6XXXXXXXX","operator":"MTN"}'Réponse
{
"status": "success",
"data": {
"transaction_id": "txn_sandbox_8f3a2b1c",
"status": "PENDING",
"amount": 10000,
"currency": "XAF",
"phone": "6XXXXXXXX",
"operator": "MTN",
"created_at": "2026-08-12T10:15:00Z"
}
}