Search for individual contacts and their information
Lusha API (2.0.0)
Lusha provides a RESTful API that allows you to query a comprehensive dataset of business profiles and company information.
To use the Lusha API, you'll need an API key. Include it in the api_key header with each request.
List of companies to search for
The list of companies to search
A unique sequential ID associated with each company. This ID is used to correlate the provided company object with the API response
- Mock serverhttps://docs.lusha.com/_mock/apis/index2/v2/company
- Production serverhttps://api.lusha.com/v2/company
- Staging serverhttps://api-staging.lusha.com/v2/company
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.lusha.com/_mock/apis/index2/v2/company \
-H 'Content-Type: application/json' \
-H 'api_key: YOUR_API_KEY_HERE' \
-d '{
"companies": [
{
"id": "1",
"domain": "lusha.com",
"name": "Lusha"
}
]
}'Bulk company search results
A map of companies keyed by ID string.
The size range of the company, based on number of employees.
The Fully Qualified Domain Name (FQDN) of the company.
A brief description of the company.
The URL of the company's logo.
The detailed address.
LinkedIn profile URL.
Crunchbase profile URL.
LinkedIn industry tags.
LinkedIn specialties.
SIC and NAICS classification.
Details about company funding.
List of funding rounds
Type of the last funding round
Detected topics of interest based on behavior.
Detected intent topics
Name of the intent topic
Technologies used by the company.
The primary industry sector in which the company operates.
The specific sub-sector within the primary industry.
{ "1": { "id": 33222678, "name": "Lusha", "companySize": [ … ], "revenueRange": [ … ], "fqdn": "www.lusha.com", "founded": "2016", "description": "Lusha is the sales intelligence platform...", "logoUrl": "https://logo.lusha.co/brightdata/year=2024/month=05/day=03/j_lvq47h0g13te1b3wpu.e7b0795e7affc9953dadd43e6fce99a2c5260043.file_lvq4cfwv17kcb9m4ej.logo_cached.jpg", "city": "Boston", "state": "Massachusetts", "country": "United States", "countryIso2": "US", "continent": "North America", "rawLocation": "800 Boylston St, Suite 1410, Boston, MA 02199, US", "linkedin": "https://www.linkedin.com/company/lushadata", "crunchbase": "https://www.crunchbase.com/organization/lusha", "industryTags": [ … ], "specialities": [ … ], "industryPrimaryGroupDetails": { … }, "funding": { … }, "intent": { … }, "technologies": [ … ], "mainIndustry": "Technology, Information & Media", "subIndustry": "Software Development", "twitter": "https://twitter.com/lusha", "facebook": "https://www.facebook.com/lusha" } }
- Mock serverhttps://docs.lusha.com/_mock/apis/index2/v2/company
- Production serverhttps://api.lusha.com/v2/company
- Staging serverhttps://api-staging.lusha.com/v2/company
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.lusha.com/_mock/apis/index2/v2/company?domain=example.com&company=Lusha&companyId=1234567890' \
-H 'api_key: YOUR_API_KEY_HERE'Company information retrieved successfully
A brief description of the company.
The domain name associated with the company's email addresses.
The URL of the company's logo.
The specific sub-sector within the primary industry.
Social media links associated with the company.
The full address of the company's location.
An object containing the company's location details.
LinkedIn industry tags for the company.
LinkedIn specialties tags associated with the company.
Details regarding the company's funding activities.
List of funding rounds
Type of funding round
Total amount raised across all rounds
Type of the last funding round
A list of detected intent topics related to the company based on your account's mapped topics.
Detected intent topics
Name of the intent topic
{ "data": { "id": 123, "description": "Lusha is the sales intelligence platform designed to help businesses get their next customers.", "domain": "lusha.com", "employees": "201 - 500", "founded": "August 1, 2011", "fqdn": "www.lusha.com", "logoUrl": "https://logo.lusha.co/brightdata/year=2024/month=05/day=03/j_lvq47h0g13te1b3wpu.e7b0795e7affc9953dadd43e6fce99a2c5260043.file_lvq4cfwv17kcb9m4ej.logo_cached.jpg", "name": "Lusha", "revenueRange": [ … ], "mainIndustry": "Technology", "subIndustry": "Software", "social": { … }, "address": "North America United States Boston 800 Boylston St , Suite 1410 , Boston, Massachusetts 02199, US Massachusetts US MA -71.05976867675781,42.358428955078125 ", "location": { … }, "categories": [ … ], "industryPrimaryGroupDetails": { … }, "website": "https://lusha.com", "specialities": [ … ], "funding": { … }, "intent": { … }, "technologies": [ … ] }, "errors": { "message": "Something went wrong" }, "meta": {} }