Skip to main content

List Banks (Pakistan)

Retrieve the list of banks and wallets available for Pakistan remittance, and use the returned bankId in downstream remittance requests.

Applies to: Pakistan


Endpoint

MethodGET
Path/remittance/{merchantId}/banks/listByAccountType
Sandboxhttps://sandbox.simpaisa.com

Headers

HeaderValue
Accepttext/plain, application/json, application/*+json
Content-Typeapplication/json
moderemittance
regionPK
version3.0

Request Parameters

ParameterRequiredTypeLengthDescription
merchantIdYesString10The unique identifier provided to the merchant by Simpaisa
accountTypeNoStringBA for bank account, DW for digital wallets. Omit to fetch both.

Response Parameters

ParameterTypeLengthDescription
statusString4Status code of the API response. 0000 indicates success.
messageString50Message accompanying the status
bankIdString5Bank ID of the beneficiary bank or wallet
bankNameString30Name of the bank or wallet available for remittances
accountTypeStringBA for bank account, DW for digital wallets
logoURLStringURL of the bank logo

Sample

{
"response": {
"status": "0000",
"message": "Success",
"bankList": [
{
"bankId": 12557,
"bankName": "KBL",
"accountType": "BA",
"logoURL": "https://static.simpaisa.com/banks/KBL.png"
},
{
"bankId": 12559,
"bankName": "Faysal Bank Limited",
"accountType": "BA",
"logoURL": "https://static.simpaisa.com/banks/FAYSALBANK.png"
}
]
}
}