IFSC Lookup

Instantpay's IFSC Lookup API helps businesses verify IFSC codes and find bank branches. This ensures accurate, efficient fund transfers. This API provides precise, up-to-date IFSC data. It helps reduce errors and improve transaction workflows.

The IFSC Lookup API helps organizations. It validates bank details and reduces the risk of issues from incorrect IFSC codes. This streamlines their financial processes.

For secure, accurate financial transactions, businesses need Instantpay's IFSC Lookup API. It is a key tool. It boosts efficiency and enables smooth fund transfers.

Header Parameters

NameTypeDescriptionMandatory (M) , Optional (O)Provided by INSTANTPAY (Y/N)
X-Ipay-Auth-CodeStringAuth Code is "1" (Fixed)MY
X-Ipay-Client-IdStringUnique Client Id Provided by InstantpayMY
X-Ipay-Client-SecretStringUnique Client Secret Provided by InstantpayMY
X-Ipay-Endpoint-IpStringEnd customer IP AddressMY

Request Parameters

Parameter NameTypeRequirementDescription
ifscStringMandatoryIfsc code of the bank
latitudeStringMandatoryEnd Customer Latitude.
longitudeStringMandatoryEnd Customer Longitude
externalRefStringMandatoryUnique Transaction id

Sample Request

curl --location --request GET 'https://api.instantpay.in/identity/ifsc' \
--header 'X-Ipay-Auth-Code: {{authCode}}' \
--header 'X-Ipay-Client-Id: {{clientId}}' \
--header 'X-Ipay-Client-Secret: {{clientSecret}}' \
--header 'X-Ipay-Endpoint-Ip: {{endPointIP}}' \
--data '{
    "ifsc":"ABHY0065002",
    "latitude":0.90,
    "longitude":99.0,
    "externalRef":"ngf8985ngjfn"
    
    
}

GET /identity/ifsc HTTP/1.1
Host: api.instantpay.in
X-Ipay-Client-Id: YWY3OTAzYzNlM2ExZTJlOQ8l80uxEOrgU6T3Oc4znVc=
X-Ipay-Client-Secret: 9e08574b440f1b4b13d19654cf31aa9b5d0b1effcc80785ded93ea87c5640fa7
X-Ipay-Auth-Code: 1
X-Ipay-Endpoint-Ip: 49.249.72.66
Content-Type: application/json
Content-Length: 136

{
    "ifsc":"ABHY0065002",
    "latitude":0.90,
    "longitude":99.0,
    "externalRef":"ngf8985ngjfn"
    
    
}

Response Parameters

Parameter NameTypeDescription
statuscodeStringInstantpay Status Code
actcodeStringAction Code
statusArrayStatus message
dataStringResponse Data(if Present)
timestampStringResponse time (YYYY-MM-DD HH:II:SS)
ipay_uuidStringRequest reference number
orderidStringTransaction Id(if transaction otherwise it is null)
environmentStringLive/Sandbox
{{
    "statuscode": "TXN",
    "actcode": null,
    "status": "Transaction Successful",
    "data": {
        "poolReferenceId": "1230621161230BRZBJ",
        "pool": {
            "account": "7428585742",
            "openingBal": "987.61",
            "mode": "DR",
            "amount": "0.59",
            "closingBal": "987.02"
        },
        "ifscDetails": {
            "ifsc": "ABHY0065002",
            "bankName": "1 ABHYUDAYA COOPERATIVE BANK LIMITED",
            "branchName": "1 ABHYUDAYA COOPERATIVE BANK LIMITED",
            "branchAddress": "1 KMSPM'S SCHOOL, WADIA ESTATE, BAIL BAZAR-KURLA(W), MUMBAI-400070",
            "branchPincode": 400070,
            "branchArea1": "1 MUMBAI",
            "branchArea2": "1 GREATER MUMBAI",
            "branchState": "1 MAHARASHTRA"
        }
    },
    "timestamp": "2023-06-21 16:12:30",
    "ipay_uuid": "h00099768add-1475-48f2-95dd-1f450c7dbf3e",
    "orderid": "1230621161230BRZBJ",
    "environment": "SANDBOX",
    "internalCode": null
}
Language
Click Try It! to start a request and see the response here!