Skip to main content
POST
/
v1
/
in
/
banking
/
upi
/
verify
Upi Verification
curl --request POST \
  --url https://base_url/v1/in/banking/upi/verify \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "upi": "987*****654@ybl"
}
'
{
  "code": "0x0200",
  "message": "Record found successful.",
  "status": "SUCCESS",
  "data": {
    "clientRefId": "bank_validation_VpemqbGWkxViodsQJfEa",
    "accountExists": true,
    "fullName": "CHASEOUT TECHNOLOGIES PRIVATE LIMITED",
    "upiId": null,
    "ifscDetails": {
      "micr": "123457873",
      "iso3166": "IN-UP",
      "swift": null,
      "bank": "Bank Name",
      "bankCode": "ABCD",
      "bankName": "Bank name",
      "branch": "BANK BRANCH",
      "centre": "Centre Name",
      "district": "District",
      "state": "UTTAR PRADESH",
      "city": "city name",
      "address": "0000 abcdefg colony, xyz city, UP 220001",
      "contact": "+910221800223344",
      "imps": true,
      "rtgs": true,
      "neft": true,
      "upi": true,
      "micrCheck": true
    }
  }
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json

The body is of type object.

Response

OK

The response is of type object.