IFSC Lookup

Verify IFSC and locate a bank branch

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-Client-Id: YWY3OTAzYzNlM2ExZTJlOQ8l80uxEOrgU6T3Oc4znVc=' \
--header 'X-Ipay-Client-Secret: 9e08574b440f1b4b13d19654cf31aa9b5d0b1effcc80785ded93ea87c5640fa7' \
--header 'X-Ipay-Auth-Code: 1' \
--header 'X-Ipay-Endpoint-Ip: 49.249.72.66' \
--header 'Content-Type: application/json' \
--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!