Company to Domain API
Enrich any company data around the world using our Company to Domain API.
Parameters
Description
cURL "https://api.enrichmentapi.io/company_to_domain?api_key=APIKEY&company=Somi+Somi&location=Frisco,Texas&get_more=true"const axios = require('axios');
axios.get('https://api.enrichmentapi.io/company_to_domain?api_key=APIKEY&company=Somi+Somi&location=Frisco,Texas&get_more=true')
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});import requests
payload = {'api_key': 'APIKEY', 'company':'Somi+Somi', 'location':'Frisco,Texas', 'get_more': 'true'}
resp = requests.get('https://api.enrichmentapi.io/company_to_domain', params=payload)
print (resp.text)try {
String url = "https://api.enrichmentapi.io/company_to_domain?api_key=APIKEY&company=Somi+Somi&location=Frisco,Texas&get_more=true";
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();
}{
"data": {
"name": "SOMISOMI",
"address": "9292 Warren Pkwy Suite 260, Frisco, TX 75035",
"phone": "(214) 390-2676",
"type": "Dessert shop",
"website": "https://www.somisomi.com/locations"
}
}Last updated