For business

Payout infrastructure for merchants

Marketplaces, payroll providers and NGOs use Money Me to pay people in local currency without building a treasury team.

Bulk payouts

Submit hundreds of payouts in one batch and track each one independently.

Reconciliation

Every transfer carries a reference and a full status history for your ledger.

Sandbox first

Test against sandbox keys with realistic quotes before going live.

Create a transfer

POST your payout request with an API key issued by the Money Me team.

POST /api/transfers.php
Authorization: Bearer mm_sandbox_xxxxxxxx
Content-Type: application/json

{
  "amount": 250.00,
  "source_currency": "USD",
  "destination_currency": "UGX",
  "recipient": {
    "name": "Aisha Nakato",
    "country": "Uganda",
    "method": "mobile_money",
    "contact": "+256770000000"
  },
  "reference": "INV-10482"
}

Response

HTTP/1.1 201 Created

{
  "id": "sbx_5f1c...",
  "status": "submitted",
  "mode": "sandbox",
  "reference": "INV-10482",
  "send":    { "amount": 250.00, "currency": "USD" },
  "receive": { "amount": 940000.00, "currency": "UGX" },
  "fee": 2.00,
  "fx_rate": 3760.0,
  "eta_minutes": 2
}

Get sandbox access

Email mm@gatavase.com with your company name and expected monthly volume and we will issue sandbox keys the same day.

Request API access