Mobile Number IntelligenceMobile To Multiple UPI

Mobile Number to All UPI VPAs

Retrieve every UPI VPA linked to a mobile number across all payment apps. Comprehensive UPI discovery for fraud and compliance.

curl -X GET "https://production.deepvue.tech/v1/mobile-intelligence/mobile-to-multiple-upi?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": 1738007863554,
  "transaction_id": "c257f23d964f4ae69d2d22b8ea310db1",
  "sub_code": "SUCCESS",
  "message": "Linked VPA Fetched Successfully.",
  "data": {
    "name_at_bank": "MOSD NIHARIKA",
    "vpas": [
      "8277182000@ptyes",
      "8277182000@ibl",
      "8277182000@axl",
      "8277182000@ybl"
    ]
  }
}
GET
/v1/mobile-intelligence/mobile-to-multiple-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

This API retrieves an account holder's name and all associated UPI identifiers by supplying their phone number. The service queries banking systems to identify all VPA (Virtual Payment Address) accounts linked to a specific mobile number.

Response outcomes

  • Successful VPA discovery — When multiple UPI IDs are found, the response includes the account holder's registered bank name and a complete list of associated VPA addresses.
  • No VPA found — When no UPI identifiers are linked to the provided mobile number, the API returns a specific status indicating this condition rather than an error.

The mobile number parameter must conform to valid phone number formatting standards. Requests with improperly formatted mobile numbers are rejected with a validation error response.