cURL
curl --request GET \ --url https://api.rolla.xyz/api/v1/external/wallet/payment-accounts \ --header 'X-API-Key: <api-key>'
{ "success": true, "message": "Payment accounts retrieved successfully", "data": { "paymentAccounts": [ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "accountName": "<string>", "accountNumber": "<string>", "bankName": "<string>", "currency": "<string>", "type": "<string>" } ] } }
Retrieves available payment accounts for a given currency. Used to determine funding methods.
curl -X GET "https://api.rolla.xyz/api/v1/external/wallet/payment-accounts?currency=NGN" \ -H "X-API-Key: your_api_key_here"
{ "success": true, "message": "Payment accounts retrieved successfully", "data": { "paymentAccounts": [ { "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "accountName": "Rolla Finance Ltd", "accountNumber": "0123456789", "bankName": "Access Bank", "currency": "NGN", "type": "bank_transfer" } ] } }
currency
Your Rolla API key
3-letter currency code (e.g. NGN, USD)
3
"NGN"
Payment accounts retrieved successfully
true
"Payment accounts retrieved successfully"
Show child attributes