Mobile Number IntelligenceMobile To UPI

Mobile Number to UPI VPA Lookup

Find the primary UPI VPA linked to a mobile number. Useful for payment verification and account discovery workflows.

curl -X GET "https://production.deepvue.tech/v1/verification/mobile-to-vpa?mobile_number=example_string" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY"
{
  "code": 200,
  "timestamp": 1737920868205,
  "transaction_id": "6ad91a7b213e483f8e24f546750e5c38",
  "sub_code": "SUCCESS",
  "message": "Linked VPA Fetched Successfully.",
  "data": {
    "mobile_number": "8117182000",
    "vpa": "81171827000@ptyes",
    "name_at_bank": "MOSD  NIHARIKA"
  }
}
GET
/v1/verification/mobile-to-vpa
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

The Mobile to UPI API retrieves account holder names and UPI IDs by providing a phone number. This endpoint allows platforms to verify UPI account details linked to mobile numbers, supporting customer identity verification workflows in financial services and payment contexts.

Response outcomes

  • Successful VPA retrieval — When a UPI ID is linked to the provided mobile number, the API returns the account holder's name at bank, mobile number, and associated VPA identifier.
  • No VPA linked — The API handles cases where mobile numbers exist but have no associated UPI account, returning a specific response indicating this status.