Search Company
Search for companies easily with our Company Search API. Provide key details like name, location, industry, or size, and our algorithm fetches precise and relevant company information.
cURL 'https://api.enrich.so/v1/api/search-company' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Example Company",
"website": "https://example.com",
"tagline": "Innovation at its best",
"type": "Private",
"postal_code": "123456",
"description": "A leading company in technology",
"industries": ["Technology", "Software"],
"location_country": "United States",
"location_city": "San Francisco",
"specialities": ["AI", "Cloud Computing"],
"followers": 5000,
"staff_count": 200,
"page_size": 10,
"current_page": 1
}'const axios = require('axios');
axios.post('https://api.enrich.so/v1/api/search-company',
{
name: "Example Company",
website: "https://example.com",
tagline: "Innovation at its best",
type: "Private",
postal_code: "123456",
description: "A leading company in technology",
industries: ["Technology", "Software"],
location_country: "United States",
location_city: "San Francisco",
specialities: ["AI", "Cloud Computing"],
followers: 5000,
staff_count: 200,
page_size: 10,
current_page: 1
},
{
headers: {
accept: 'application/json',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error.response ? error.response.data : error.message);
});Example response
Status Code: 200 OK
Status code: 404 NOT FOUND
Last updated