KYCUPI

UPI VPA Verification — Account Holder Lookup

Verify any UPI VPA (Virtual Payment Address) and retrieve the linked account holder name. Instant validation for payment workflows.

curl -X GET "https://production.deepvue.tech/v1/verification/upi?vpa=example_string&name=John Doe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY"
{
  "code": 200,
  "timestamp": 1737634320519,
  "transaction_id": "c149c0d2da834ab7b77870edb56d5a93",
  "sub_code": "SUCCESS",
  "message": "UPI Successfully Verified",
  "data": {
    "account_exists": true,
    "name_at_bank": "NIHARIKA",
    "name_information": {
      "name_at_bank_cleaned": "Niharika"
    }
  }
}
GET
/v1/verification/upi
GET
Bearer Token (JWT)
Bearer Tokenstring
Required

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
API Key (header: x-api-key)
x-api-keystring
Required

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token (JWT). ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

header
x-api-keystring
Required

API Key for authentication. The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

Query Parameters

Responses

codeinteger
timestampinteger
transaction_idstring
sub_codestring
messagestring
dataobject

Overview

You can verify the UPI details of your customer before adding them to your payouts account using the UPI Verification feature. This functionality streamlines payment operations by validating recipient information upfront.

The API addresses two main scenarios:

  • Verifying customer names against their UPI registration.
  • Validating whether a given UPI identifier actually exists within the banking system.

Both checks execute instantly. The verification process confirms UPI account existence and retrieves the registered account holder's name from banking records. Successful responses include both raw and cleaned name data for matching against customer records.

A successful response is billable only in case of a 200 response status code. Charges apply exclusively when the API returns successful verification results.