The Person API allows you to look up detailed information about a person using various identifiers, such as their email, LinkedIn URL, full name, company name, or company domain. You can retrieve key data points like Location, Email, Phone number, Social network URLs.
- Get Contact Signals by IDs
Lusha API
Lusha provides a RESTful API that allows you to query a comprehensive dataset of business profiles and company information.
All API requests should be made over HTTPS (SSL), and the response bodies are delivered in JSON format.
Please note that Lusha is a search platform, meaning the data provided is not created or directly managed by us. Instead, it is retrieved from publicly available sources and through contributions from trusted business partners.
For more information on how we collect, use, and handle business profiles, please refer to our Privacy Policy.
To access the Lusha API, you must authenticate your requests using your API key. This key is unique to your account and is used to identify your usage of the API.
When making an API call, include your API key in the api_key
header of the request.
- To obtain your API key, please visit the following link: https://dashboard.lusha.com/enrich/api
- Your API key is sensitive and should be kept private. Do not share it with anyone outside of your organisation.
- The API key is used to track and manage your usage of the API, so ensure it is protected from unauthorised access.
- Person Enrichment: Get contact information for individuals
- Company Enrichment: Get detailed company information
- Prospecting: Search and enrich contacts and companies based on specific criteria
- Account Management: Monitor your API credit usage
- Signals: Retrieve signals data for contacts and companies
Lusha API enforces rate limiting to ensure fair usage and protect against excessive load.
- General Rate Limit: You can make up to 25 requests per second to each API endpoint
- Credit Usage API: Has a specific rate limit of 5 requests per minute
To monitor your current rate limit status, check the HTTP response headers in your API calls:
Header | Description |
---|---|
x-rate-limit-daily | The total number of requests allowed per day under your current plan |
x-daily-requests-left | The number of requests remaining in your daily quota |
x-daily-usage | The number of requests you have made in the current daily period |
x-rate-limit-hourly | The total number of requests allowed per hour under your current plan |
x-hourly-requests-left | The number of requests remaining in your hourly quota |
x-hourly-usage | The number of requests you have made in the current hourly period |
x-rate-limit-minute | The total number of requests allowed per minute under your current plan |
x-minute-requests-left | The number of requests remaining in your current minute window |
x-minute-usage | The number of requests you have made in the current minute window |
- If you exceed the rate limit, the API will return a 429 (Too Many Requests) error.
- To ensure a smooth experience, respect the rate limits defined by your subscription tier.
- Daily limits vary based on your billing plan — higher tiers have higher quotas.
- You can programmatically track your usage through these response headers:
X-RateLimit-Remaining-Daily
X-RateLimit-Reset-Daily
- It is strongly recommended to implement logic that:
- Monitors these headers
- Pauses or retries requests accordingly
- Helps avoid hitting the limit and ensures reliable operation
Lusha API uses standard HTTP response codes to indicate the status of your request. These codes help you understand whether the request was successful or if there was an issue.
Status Code | Name | Description |
---|---|---|
200 | OK | Successful request |
400 | Bad Request | Badly formatted request |
401 | Unauthorized | The API key is invalid |
403 | Forbidden | Your account is not active. Please reach out to support at support@lusha.com for assistance |
403 | Forbidden | Your pricing version does not support requesting individual datapoints [revealEmails, revealPhones] |
404 | Not Found | The requested endpoint was not found |
412 | Precondition Failed | The request failed due to invalid syntax that was provided. Please make sure to send a full name field that contains a valid first & last name |
429 | Too Many Requests | You've reached your trial limit, please contact support for upgrade |
429 | Too Many Requests | Daily API quota limit exceeded. Limit X calls per day |
429 | Too Many Requests | Hourly API rate limit exceeded. Limit: X calls per hour. Reset in X seconds |
451 | Unavailable For Legal Reasons | We are unable to process this contact request due to our GDPR regulations |
499 | Client Closed Request | Request failed due to request timeout |
5XX | Server Error | There's a problem on Lusha's end |
In case of an error, the response body will contain details about the error:
{
"error": {
"code": 400,
"message": "Invalid request parameters"
}
}
https://docs.lusha.com/_mock/apis/openapi/
https://api.lusha.com/
Prospecting
With Lusha's Prospecting API, you can query Lusha's extensive database based on specific criteria (such as job title, seniority, location, and more) to retrieve detailed contact and company information.
The Prospecting API is designed to help you generate new records (contacts or leads) for your CRM system, using filters that align with your Ideal Customer Profile (ICP).
This process involves three main steps:
Step | API | Description |
---|---|---|
1 | Filters API | Apply filters to refine your search |
2 | Search API | Query Contacts or Companies using the available filters |
3 | Enrich API | Get full details of Contacts and Companies from the search results |
Important Notes:
- The API KEY header is mandatory for every request to our service.
Request
Retrieve signals data for a list of contact IDs. This endpoint allows you to get recent activities and signals for up to 100 contacts per request.
Endpoint: (POST) https://api.lusha.com/api/signals/contacts
Default Behavior:
- Returns signals from the last 6 months by default
- Use
startDate
to customize the timeframe - Each signal type requested counts towards credit usage
List of contact IDs to retrieve signals for
Types of signals to retrieve
- Mock server
https://docs.lusha.com/_mock/apis/openapi/api/signals/contacts
- Production server
https://api.lusha.com/api/signals/contacts
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.lusha.com/_mock/apis/openapi/api/signals/contacts \
-H 'Content-Type: application/json' \
-H 'api_key: YOUR_API_KEY_HERE' \
-d '{
"contactIds": [
115889
],
"signals": [
"promotion",
"companyChange"
],
"startDate": "2025-03-01"
}'
{ "contacts": { "property1": { … }, "property2": { … } }, "endDate": "2025-07-31", "startDate": "2025-03-01", "creditCharged": 2 }
Request
Search for contact signals using identifiers like LinkedIn URL, email, or name + company. This endpoint combines search and signal enrichment in a single request.
Endpoint: (POST) https://api.lusha.com/api/signals/contacts/search
Search Requirements: Each contact can be identified by:
- Contact ID
- LinkedIn URL
- Email address
- Full name + Company (name or domain)
Default Behavior:
- Returns signals from the last 6 months by default
- Contacts are matched based on provided identifiers
- Returns both contact data and associated signals
List of contact identifiers to search for
A unique sequential ID to associate with the contact object in the API response
LinkedIn profile URL
Types of signals to retrieve
- Mock server
https://docs.lusha.com/_mock/apis/openapi/api/signals/contacts/search
- Production server
https://api.lusha.com/api/signals/contacts/search
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.lusha.com/_mock/apis/openapi/api/signals/contacts/search \
-H 'Content-Type: application/json' \
-H 'api_key: YOUR_API_KEY_HERE' \
-d '{
"contacts": [
{
"id": "123321",
"social_link": "https://www.linkedin.com/in/ron-nabet"
}
],
"signals": [
"promotion",
"companyChange"
],
"startDate": "2025-03-01"
}'
{ "contacts": { "property1": { … }, "property2": { … } }, "endDate": "2025-07-31", "startDate": "2025-03-01", "creditCharged": 2 }
Request
Retrieve signals data for a list of company IDs. This endpoint allows you to get recent activities and signals for up to 100 companies per request.
Endpoint: (POST) https://api.lusha.com/api/signals/companies
Default Behavior:
- Returns signals from the last 6 months by default
- Use
startDate
to customize the timeframe
List of company IDs to retrieve signals for
Types of signals to retrieve
- Mock server
https://docs.lusha.com/_mock/apis/openapi/api/signals/companies
- Production server
https://api.lusha.com/api/signals/companies
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.lusha.com/_mock/apis/openapi/api/signals/companies \
-H 'Content-Type: application/json' \
-H 'api_key: YOUR_API_KEY_HERE' \
-d '{
"companyIds": [
3416
],
"signals": [
"headcountGrowth",
"newJobsOpen",
"totalJobsOpen"
],
"startDate": "2025-03-01"
}'
{ "companies": { "property1": { … }, "property2": { … } }, "endDate": "2025-07-31", "startDate": "2025-02-01", "creditCharged": 3 }
Request
Search for company signals using identifiers like domain, company name, or ID. This endpoint combines search and signal enrichment in a single request.
Endpoint: (POST) https://api.lusha.com/api/signals/companies/search
Search Requirements: Each company must have at least one identifier:
- Company ID (as string)
- Company name
- Company domain
Default Behavior:
- Returns signals from the last 6 months by default
- Companies are matched based on provided identifiers
List of company identifiers to search for
Types of signals to retrieve
- Mock server
https://docs.lusha.com/_mock/apis/openapi/api/signals/companies/search
- Production server
https://api.lusha.com/api/signals/companies/search
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.lusha.com/_mock/apis/openapi/api/signals/companies/search \
-H 'Content-Type: application/json' \
-H 'api_key: YOUR_API_KEY_HERE' \
-d '{
"companies": [
{
"id": "12344321",
"domain": "lusha.com"
}
],
"signals": [
"headcountGrowth",
"newJobsOpen"
],
"startDate": "2025-03-01"
}'
{ "companies": { "property1": { … }, "property2": { … } }, "endDate": "2025-07-31", "startDate": "2025-02-01", "creditCharged": 3 }