HLR Check

Post  https://api.OQPay.co.in/api/OQPay/hlrcheck


In this API, you will provide the user's registration reference, the service number to be recharged, and the category of service being used. These details enable the system to identify the user, validate the number, and process the request according to the selected service type—such as mobile or DTH.

Body Parameters
{     
  "RegisterID": "OQPay-554",
  "number": "98XXXXXX76",
  "type": "mobile/dth"
} 
Request Parameters
Name Type Description
RegisterID String Unique registration identifier, often tied to the user.
number String Mobile number of the user, often used for verification or notifications
Type String The 'number' parameter can be either a DTH number or a mobile number.
Responses

200

200

Response

200

RESPONSE BODY

object

status    boolean

response_code    integer

operatorid    integer

ackno    string

message    string

Response

401

RESPONSE BODY

object

status     boolean

response_code     integer

message     string

401

401

412

412

Response

412

RESPONSE BODY

Object

status     boolean

response_code     integer

message     string


Did this page help you?     Yes    No

Language
shell Shell
python Python
node Node
c# C#
php PHP

cURL

curl --location 'https://api.OQPay.co.in/api/OQPay/hlrcheck' \
--header 'Content-Type: application/json' \
--data  '{
  "RegisterID": "OQPay-554",
  "number": "98XXXXXX76",
  "type": "mobile"
}'
                                
import requests
import json

url = 'https://api.OQPay.co.in/api/OQPay/hlrcheck'
payload = json.dumps({
  "RegisterID": "OQPay-554",
  "number": "98XXXXXX76",
"type": "mobile"
}) 

headers = {
  "Content-type" : "application/json"
}

response = requests.request("POST", url, headers=headers, data=payload)

print (response.text)
                                
var requests = require("request");
var options = { 
  "method" : "POST",
  "url" : 'https://api.OQPay.co.in/api/OQPay/hlrcheck',
  "headers" : {
    "Content-Type" : 'application/json'
  },
  body: JSON.stringify({
    "RegisterID": "OQPay-554",
    "number": "98XXXXXX76",
    "type": "mobile"
  }) 
}; 
request(options, function(error, response){
   if(error) throw new Error(error);
   console.log(response.body); 
}); 
                                
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post,'https://api.OQPay.co.in/api/OQPay/hlrcheck')
var content = new StringContent(
  "{
    "RegisterID": "OQPay-554",
    "number": "98XXXXXX76",
    "type": "mobile"
  }",
  null,"application/json"
); 

request.Content = content;
var response =  await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
                                
<?php
$curl =  curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL =>  'https://api.OQPay.co.in/api/OQPay/hlrcheck',
  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 =>  '{
    "RegisterID": "OQPay-554",
    "number": "98XXXXXX76",
   "type": "mobile"
  }',
  CURLOPT_HTTPHEADER =>  array(
    'Content-Type: application/json'
  ),
));
$response =  curl_exec($curl);
curl_close($curl);
echo $response;
                                

RESPONSE

200

401

412

-Result

Example

{
  "status": true,
  "response_code": 1,
  "info": {
    "operator": "Airtel",
    "circle": "Delhi NCR"
  },
  "message": "Fetch Successful"
}
                                
 
{
  "status": false,
  "response_code": 11,
  "message": "Duplicate Transaction"
}
                                
 
{
  "status": false,
  "response_code": 16,
  "message": "Authentication failed"
}

                                
 
{
  "status": false,
  "response_code": 15,
  "message": "Invalid signature encoding"
}