Nigeria Payouts

NGN payouts to banks and OPay wallets

Use this guide when you want to send NGN payouts to recipients in Nigeria. Nigeria supports bank transfers and mobile wallets (OPay).

Overview

  • Currency: NGN
  • Payment location: NGA
  • Supported rails: Bank transfer, Mobile wallet
  • Payment methods:
    • Bank transfer → paymentMethodId: "banktransfer", recipient.type: "bank_account"
    • Mobile wallet → paymentMethodId: "mobilemoney", recipient.type: "mobile_money"

Required fields by rail

Bank transfer

FieldRequiredNotes
accountNumberYesNigerian bank account number
bankCodeYesLocal bank code
accountHolderNameYesName on the account
countryYesNGA
phoneNumberNoInternational format

Mobile wallet (OPay)

FieldRequiredNotes
phoneNumberYesMSISDN in international format
countryYesNGA
operatorYesUse opay
nameNoRecipient name

Top-level required fields for every payout: merchantId, merchantReference, destinationValue (with minorAmount and currency), paymentMethodId, paymentLocation, recipient.

Example requests

Bank transfer

1{
2 "merchantId": "your-merchant-id",
3 "merchantReference": "PAYOUT-NG-001",
4 "destinationValue": {
5 "minorAmount": 1000000,
6 "currency": "NGN"
7 },
8 "paymentMethodId": "banktransfer",
9 "paymentLocation": "NGA",
10 "recipient": {
11 "type": "bank_account",
12 "accountNumber": "0123456789",
13 "bankCode": "044",
14 "accountHolderName": "John Doe",
15 "country": "NGA"
16 }
17}

Mobile wallet (OPay)

1{
2 "merchantId": "your-merchant-id",
3 "merchantReference": "PAYOUT-NG-002",
4 "destinationValue": {
5 "minorAmount": 500000,
6 "currency": "NGN"
7 },
8 "paymentMethodId": "mobilemoney",
9 "paymentLocation": "NGA",
10 "recipient": {
11 "type": "mobile_money",
12 "phoneNumber": "2348012345678",
13 "country": "NGA",
14 "operator": "opay",
15 "name": "Ada Obi"
16 }
17}