cURL
curl --request GET \ --url https://api.payvessel.com/pms/wallets \ --header 'api-key: <api-key>'
{ "status": "<string>", "data": [ { "id": "<string>", "name": "<string>", "balance": { "available_balance": "<string>", "ledger_balance": "<string>" }, "currency": "<string>" } ] }
List or retrieve managed wallets for your business
curl -X GET "https://api.payvessel.com/pms/wallets" \ -H "api-key: YOUR_API_KEY"
curl -X GET "https://sandbox.payvessel.com/pms/wallets" \ -H "api-key: YOUR_SANDBOX_API_KEY"
/pms/wallets
api-key
"success"
"error"
Show Wallet Object
NGN
curl -X GET "https://api.payvessel.com/pms/wallets" \ -H "api-key: YOUR_API_KEY" \ -H "api-secret: YOUR_SECRET"
{ "status": "success", "data": [ { "id": "WLT_1", "name": "Main Settlements", "balance": { "available_balance": "1000000.00", "ledger_balance": "1000000.00" }, "currency": "NGN" }, { "id": "WLT_2", "name": "Refunds Wallet", "balance": { "available_balance": "50000.00", "ledger_balance": "50000.00" }, "currency": "NGN" } ] }
Your Payvessel public API key
Wallets retrieved successfully
Request status
Show child attributes