Mutt
Professional
- Messages
- 1,458
- Reaction score
- 1,296
- Points
- 113
Note: It's just free plan but i don't need the key anymore.
PHP Code Example:
JavaScript Example:
Does someone of you have an ipquality api key?
www.ipqualityscore.com
How To Get API Key
Open Gmailnator.com
Head over to proxycheck.io and paste your mail
Your API should be mailed after 1-2 minutes
Login and use it
Code:
901bfbca1baf949ed4b126660fb995af
PHP Code Example:
Code:
// set API Access Key
$access_key = 'YOUR_ACCESS_KEY';
// set phone number
$phone_number = '14158586273';
// Initialize CURL:
$ch = curl_init('http://apilayer.net/api/validate?access_key='.$access_key.'&number='.$phone_number.'');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Store the data:
$json = curl_exec($ch);
curl_close($ch);
// Decode JSON response:
$validationResult = json_decode($json, true);
// Access and use your preferred validation result objects
$validationResult['valid'];
$validationResult['country_code'];
$validationResult['carrier'];
JavaScript Example:
Code:
// set endpoint and your access key
var access_key = 'YOUR_ACCESS_KEY';
var phone_number = '14158586273';
// verify phone number via AJAX call
$.ajax({
url: 'http://apilayer.net/api/validate?access_key=' + access_key + '&number=' + phone_number,
dataType: 'jsonp',
success: function(json) {
// Access and use your preferred validation result objects
console.log(json.valid);
console.log(json.country_code);
console.log(json.carrier);
}
});
Does someone of you have an ipquality api key?
Fraud Prevention | Bot Detection | Bot Protection | Prevent Fraud with IPQS
Prevent fraud and detect bots confidently with IPQS fraud prevention solutions including bot detection, proxy detection, & email validation. IPQS fraud prevention tools detect bots, high risk users, and payment chargebacks to prevent abusive behavior in real-time.
How To Get API Key
Last edited: