Integration & APIs

Benefit from a highly secure and performant collection (cash-in) and refund (cash-out) solution, powered by our APIs and integration tools.

Devops skills

POST /v1/payout

Trigger a payout to a Mobile Money wallet or bank account.

Request
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"}'
Response
{
  "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"
  }
}