Verify UPI Handle (VPA)

UPI VPA verification service which returns the name of the bank account holder by inputting VPA. Works for all IMPS & UPI enabled banks.

Request Parameters

ParametersTypeMandatory (M) , Optional(O)Description
payeeArrayMPayee details
payee.accountNumberStringMUPI id of the payee
bankIfscStringMBlank
externalRefStringMUnique Reference number
consentStringMY - Yes
N - No
pennyDropStringMYES
latitudeStringMCurrent location latitude
longitudeStringMCurrent location longitude

Sample Request

curl --location --request POST 'https://api.instantpay.in/identity/verifyBankAccount' \
--header 'X-Ipay-Auth-Code: {{authCode}}' \
--header 'X-Ipay-Client-Id: {{clientId}}' \
--header 'X-Ipay-Client-Secret: {{clientSecret}}' \
--header 'X-Ipay-Endpoint-Ip: {{endPointIP}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "payee" : {
        "accountNumber" : "i**y.*****@icici",
        "bankIfsc" : "0"
    },
    "externalRef" : "123223",
    "consent" : "Y",
    "pennyDrop": "YES",
    "latitude" : "20.5936",
    "longitude" : "78.9628"
}'
POST /identity/verifyBankAccount HTTP/1.1
Host: api.instantpay.in
X-Ipay-Auth-Code: {{authCode}}
X-Ipay-Client-Id: {{clientId}}
X-Ipay-Client-Secret: {{clientSecret}}
X-Ipay-Endpoint-Ip: {{endPointIP}}
Content-Type: application/json

{
    "payee" : {
        "accountNumber" : "i**y.*****@icici",
        "bankIfsc" : "0"
    },
    "externalRef" : "PPT223",
    "consent" : "Y",
    "pennyDrop": "Yes",
    "latitude" : "2*.***6",
    "longitude" : "7*.***8"
}

Response Parameters

NameTypeDescription
statuscodeStringInstantPay Status Code
actcodeStringAction Code
statusStringStatus Message
dataArrayResponse Data (If Present)
timestampStringCurrent time (YYYY-MM-DD HH:II:SS)
ipay_uuidStringRequest reference number
orderidStringTransaction Id ( If transaction otherwise it is null )
environmentStringLive

Sample Response

{
    "statuscode": "TXN",
    "actcode": null,
    "status": "Transaction Successful",
    "data": {
        "externalRef": "1706608849",
        "poolReferenceId": "1240130153049FALDK",
        "txnValue": "0.00",
        "txnReferenceId": "00",
        "pool": {
            "account": "9835799007",
            "openingBal": "12.89",
            "mode": "DR",
            "amount": "1.18",
            "closingBal": "11.71"
        },
        "payer": {
            "account": "9835799007",
            "name": "SHAHBAZ STORE"
        },
        "payee": {
            "name": "RAZOR***",
            "account": "razorp766.rzp@icici",
            "ifsc": "ICIC0000001",
            "type": "ENTITY",
            "mccCode": "8931",
            "merchantOnboardingType": "",
            "merchantGenre": "",
            "accountType": "SAVINGS",
            "iin": ""
        },
        "isCached": false,
        "isPennyDrop": false
    },
    "timestamp": "2024-01-30 15:30:50",
    "ipay_uuid": "h0059b37156c-3076-4386-8124-80f8d2652282-LB99e7CXARug",
    "orderid": "1240130153049FALDK",
    "environment": "LIVE",
    "internalCode": null
}
Language
Click Try It! to start a request and see the response here!