How to fully automate LinkedIn lead search, at any scale?
Are you looking for a solution to integrate LinkedIn leads into your sales process automatically? In this article, I’ll show you how to leverage our API to scrape leads from LinkedIn Sales Navigator searches programmatically—without using your own LinkedIn account, without providing any cookies, and without requiring a browser extension. All you need to provide are the search criteria.
Code demonstration
For instance, let’s say you need a lead list with the following criteria:
-
Job title includes: owner, founder, or director
-
Location: United States
-
Industry: Software Development
-
Company headcount range: 11-200
Below is how you can do it easily in the Python language, step by step.
Initiate a Search
Check Search Progress
Retrieve Search Results
Put All Together
Prerequisites
Before running the script, ensure you have:
- At least a PRO plan to use the search feature.
- Python installed on your system.
- The requests library installed. You can install it using:
How much does it cost?
Each stage of the search process costs a different number of credits:
-
Search initiation: 50 credits. Even if the search returns no results you’ll be charged 50 credits.
-
Status monitoring: free of charge. You can check it as frequently as needed until the job is complete.
-
Result fetching: each result costs 0.5 credits.
For example, if your search yields 1,000 results, the total credit cost would be:
50 credits + (0.5*1000 credits) = 550 credits.