Dhboss is revolutionizing the digital payments landscape with its innovative "Mobile Number to VPA" API, designed to simplify and accelerate the process of obtaining Unified Payments Interface (UPI) IDs using mobile numbers. This API enhances the efficiency and security of digital transactions, providing a streamlined experience for users and developers alike. Dhboss’s Mobile Number to VPA API is a transformative tool for businesses and developers aiming to improve the efficiency and security of digital payments in India. With features like easy integration, fraud prevention, and government-verified accuracy, the API fosters a reliable and seamless payment ecosystem. Developers can effortlessly incorporate this API into their applications, offering users a hassle-free experience for financial transactions. Dhboss is dedicated to delivering innovative solutions that drive the growth of digital payments in India.Key Features
Benefits
Conclusion
What is needed to use this API and how it will work is described below -
Your Api Key : Get API In Profile & eKYC
Name | Type | Description | Mandatory |
---|---|---|---|
phone_no | String | {Enter Value} | Yes |
apikeyfill | String | {Enter Value} | Yes |
Name | Type | Description |
---|---|---|
code | integer | 200 |
status | string | success |
message | string | VPA Found Successfully |
phone_no | string | 9999999999 |
response.vpa | string | sample@ybl |
response.valid | boolean | 1 |
https://api.dhboss.com/apicall/mobile_number_to_vpa_api/
phone_no=value&apikeyfill=value
<?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://api.dhboss.com/apicall/mobile_number_to_vpa_api/', CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'POST', CURLOPT_POSTFIELDS => 'phone_no=99999999&apikeyfill=api', )); $response = curl_exec($curl); curl_close($curl); echo $response; ?>
{ "code": 200, "status": "success", "message": "VPA Found Successfully", "phone_no": "9999999999", "response": { "vpa": "sample@ybl", "valid": true } }