POST
/
api
/
v1
/
in
/
banking
/
upi
/
verify
curl --request POST \
  --url https://infopass.in/api/v1/in/banking/upi/verify \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "upi": "965*****986@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": "247012003",
      "iso3166": "IN-UP",
      "swift": null,
      "bank": "Bank of Baroda",
      "bankCode": "BARB",
      "bankName": "Bank of Baroda",
      "branch": "HAKIKATNAGAR BRANCH",
      "centre": "SAHARANPUR",
      "district": "SAHARANPUR",
      "state": "UTTAR PRADESH",
      "city": "SAHARANPUR",
      "address": "HAKIKATNAGAR BRANCH,NEAR POLICE LINES, HAKIKAT NAGAR,SAHARANPUR (U.P.),2470",
      "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 · object

Response

200
application/json
OK

The response is of type object.