Nagad Customer app icon

Nagad Customer API

بنغلاديش محفظة جوال

محفظة Nagad الشخصية (بنغلاديش) — تسجيل دخول عبر PIN و OTP بالرسائل القصيرة مع خطوة اختيارية لتغيير الجهاز عبر ‎*167#‎، الرصيد، سجل المعاملات المُقسّم صفحات وتفاصيلها، التحقق من المستلم، معاينة الرسوم، تحويل الأموال P2P، وصيانة توفير/تحديث بيانات الاعتماد.

نظرة عامة

💡

عنوان URL الأساسي: https://api.openbankinggateway.com — تستخدم كل الاستجابات الغلاف الموحّد {code, data}.

تدفّق الجلسة: أكمل نقاط تسجيل الدخول للحصول على token من البوابة، ثم مرّره كـ token= إلى كل نقطة نهاية تتطلب مصادقة.

الشفافية: يُضمَّن JSON المصدر المالي الخام تحت data.upstream في كل استجابة — النجاح والخطأ على حدٍّ سواء.

املأ المعاملات في أي نقطة نهاية أدناه واضغط Send request لاستدعاء البوابة المباشرة، أو انسخ مثال curl لتشغيله من الطرفية.

Auth

POST/api/nagad-customer/login/request-otp

Dispatch SMS OTP or signal *167# device-change

ParameterInValue
account*query
pinCode*query
curl -X POST 'https://api.openbankinggateway.com/api/nagad-customer/login/request-otp?account=01900000002&pinCode=1234'
POST/api/nagad-customer/login/verify-ussd-otp

Submit the *167# device-change USSD code

ParameterInValue
account*query
ussdOtp*query
curl -X POST 'https://api.openbankinggateway.com/api/nagad-customer/login/verify-ussd-otp?account=01900000002&ussdOtp=<ussdOtp>'
POST/api/nagad-customer/login/verify-otp

Verify OTP and issue a session token

ParameterInValue
account*query
otp*body
uidbody
curl -X POST 'https://api.openbankinggateway.com/api/nagad-customer/login/verify-otp?account=01900000002' \ -H 'Content-Type: application/json' \ -d '{"otp":"582914"}'

Account

GET/api/nagad-customer/balance

Wallet balance (token required)

ParameterInValue
token*query
curl -X GET 'https://api.openbankinggateway.com/api/nagad-customer/balance?token=<token>'
GET/api/nagad-customer/transaction-history

Paged transaction history (token required)

ParameterInValue
token*query
pagequery
curl -X GET 'https://api.openbankinggateway.com/api/nagad-customer/transaction-history?token=<token>&page=0'
GET/api/nagad-customer/transaction-detail

Single transaction detail (token required)

ParameterInValue
token*query
txnId*query
approvalDate*query
curl -X GET 'https://api.openbankinggateway.com/api/nagad-customer/transaction-detail?token=<token>&txnId=<txnId>&approvalDate=20260731'

Transfer

GET/api/nagad-customer/validate-account

Check a recipient is a registered wallet

ParameterInValue
token*query
destMobile*query
curl -X GET 'https://api.openbankinggateway.com/api/nagad-customer/validate-account?token=<token>&destMobile=01800000002'
GET/api/nagad-customer/fee-commission

Preview fee / commission / net for a transfer

ParameterInValue
token*query
destMobile*query
amount*query
txTypequery
curl -X GET 'https://api.openbankinggateway.com/api/nagad-customer/fee-commission?token=<token>&destMobile=01800000002&amount=100'
POST/api/nagad-customer/p2p

P2P send-money to another Nagad wallet

ParameterInValue
token*query
destAccountNo*query
amount*query
userRefMessagequery
curl -X POST 'https://api.openbankinggateway.com/api/nagad-customer/p2p?token=<token>&destAccountNo=01800000002&amount=50'

Maintenance

POST/api/nagad-customer/refresh-card-data

Provision/refresh P2P payment credentials

ParameterInValue
token*query
curl -X POST 'https://api.openbankinggateway.com/api/nagad-customer/refresh-card-data?token=<token>'
POST/api/nagad-customer/replenish-card

Refresh the transaction credential quota

ParameterInValue
token*query
curl -X POST 'https://api.openbankinggateway.com/api/nagad-customer/replenish-card?token=<token>'
POST/api/nagad-customer/reinitialize-wallet

Re-provision an existing session for P2P

ParameterInValue
token*query
curl -X POST 'https://api.openbankinggateway.com/api/nagad-customer/reinitialize-wallet?token=<token>'