cURL "https://api.enrichmentapi.io/reverse_email?api_key=APIKEY&[email protected]"
const axios = require('axios');
axios.get('https://api.enrichmentapi.io/reverse_email?api_key=APIKEY&[email protected]')
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
import requests
payload = {'api_key': 'APIKEY', 'email':'[email protected]'}
resp = requests.get('https://api.enrichmentapi.io/reverse_email', params=payload)
print (resp.text)
try {
String url = "https://api.enrichmentapi.io/reverse_email?api_key=APIKEY&[email protected]";
URL urlForGetRequest = new URL(url);
String readLine = null;
HttpURLConnection conection = (HttpURLConnection) urlForGetRequest.openConnection();
conection.setRequestMethod("GET");
int responseCode = conection.getResponseCode();
if (responseCode == HttpURLConnection.HTTP_OK) {
BufferedReader in = new BufferedReader(new InputStreamReader(conection.getInputStream()));
StringBuffer response = new StringBuffer();
while ((readLine = in.readLine()) != null) {
response.append(readLine);
}
in.close();
System.out.println(response.toString());
} else {
throw new Exception("Error in API Call");
}
} catch (Exception ex) {
ex.printStackTrace();
}
require 'net/http'
require 'json'
params = {
:api_key => "APIKEY",
:email=> "[email protected]"
}
uri = URI('https://api.enrichmentapi.io/reverse_email')
uri.query = URI.encode_www_form(params)
website_content = Net::HTTP.get(uri)
print(website_content)
<?php
$url = "https://api.enrichmentapi.io/reverse_email?api_key=APIKEY&[email protected]";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$response = curl_exec($ch);
curl_close($ch);
print_r($response);
{
"person_profile": {
"first_name": "John",
"last_name": "Doe",
"position": "Data Analyst",
"location": "Paris",
"linkedin_id": "john-doe-653160",
"person_api_url": "https://api.enrichmentapi.io/person?linkedin_id=john-doe-653160&api_key=APIKEY"
}
}