Wallet
Last updated
Last updated
POST /api/v1/wallet/kyc/bvn HTTP/1.1
Host: api.monei.cc
Content-Type: application/json
Accept: */*
Content-Length: 21
{
"bvn": "12345678901"
}{
"id": "text",
"createdAt": "2026-01-12T15:41:16.040Z",
"updatedAt": "2026-01-12T15:41:16.040Z",
"deletedDate": "2026-01-12T15:41:16.040Z",
"verificationStatus": "text",
"firstName": "text",
"lastName": "text",
"gender": "text",
"dateOfBirth": "text",
"phoneNo": "text",
"pixBase64": "text",
"kycStatus": "text",
"verifiedAt": "2026-01-12T15:41:16.040Z"
}POST /api/v1/wallet/user/fund-wallet HTTP/1.1
Host: api.monei.cc
Content-Type: application/json
Accept: */*
Content-Length: 12
{
"amount": 1
}{
"statusCode": 1,
"message": "text",
"data": {
"link": "text"
}
}GET /api/v1/wallet/me HTTP/1.1
Host: api.monei.cc
Accept: */*
{
"nairaBalance": 1,
"evmPortfolio": {},
"solPortfolio": {},
"subwallets": [
{
"id": "text",
"createdAt": "2026-01-12T15:41:16.040Z",
"updatedAt": "2026-01-12T15:41:16.040Z",
"deletedDate": "2026-01-12T15:41:16.040Z",
"parentWalletId": "text",
"type": "FIAT",
"currency": "text",
"balance": 1,
"chain": "text",
"publicAddress": "text",
"evmPortfolio": {},
"solPortfolio": {}
}
]
}GET /api/v1/wallet/get-banks HTTP/1.1
Host: api.monei.cc
Accept: */*
{
"statusCode": 1,
"message": "text",
"data": [
{
"swiftCode": "ABC123",
"bic": "BIC456",
"isMobileVerified": true,
"isCashPickUp": false,
"nibssCode": "110072",
"id": "178",
"code": "110072",
"name": "78 Finance Company Limited",
"branches": [
[]
]
}
]
}POST /api/v1/wallet/verify-bank-account HTTP/1.1
Host: api.monei.cc
Content-Type: application/json
Accept: */*
Content-Length: 38
{
"accountNumber": "text",
"bank": "text"
}{
"statusCode": 1,
"message": "text",
"data": {
"accountName": "Customer Name",
"accountNumber": "0736379044",
"bankCode": "058",
"bankName": "Guaranty Trust Bank"
}
}POST /api/v1/wallet/withdrawals HTTP/1.1
Host: api.monei.cc
Content-Type: application/json
Accept: */*
Content-Length: 110
{
"amount": 1,
"bank": "text",
"accountNumber": "text",
"transactionPin": "text",
"currency": "text",
"narration": "text"
}{
"statusCode": 1,
"message": "text",
"data": {}
}POST /api/v1/wallet/peer-transfer HTTP/1.1
Host: api.monei.cc
Content-Type: application/json
Accept: */*
Content-Length: 72
{
"receiver": "text",
"amount": 1,
"transactionPin": "text",
"currency": "text"
}{
"statusCode": 1,
"message": "text",
"data": {}
}