Linkedin Mutual Connections Parser
3 days trial then $25.00/month - No credit card required now
Linkedin Mutual Connections Parser
3 days trial then $25.00/month - No credit card required now
Allows you to extract all informations from mutual connections of a linkedin profile url (1st and 2nd). Full name, jobtitle, premium status, followers, linkedin url, network distance, location, number of mutual connections. Does not need to be in your network to check for mutual connections
You can access the Linkedin Mutual Connections Parser programmatically from your own JavaScript applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4// Replace the '<YOUR_API_TOKEN>' with your token
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9// Prepare Actor input
10const input = {
11 "url": "https://www.linkedin.com/in/thomas-l/",
12 "cookies": [
13 {
14 "domain": ".linkedin.com",
15 "expirationDate": 1742798742.32278,
16 "hostOnly": false,
17 "httpOnly": false,
18 "name": "test",
19 "path": "/",
20 "sameSite": "no_restriction",
21 "secure": true,
22 "session": false,
23 "storeId": "0",
24 "value": "To be changed. Check readme on how to extract cookie session from browser",
25 "id": 1
26 }
27 ]
28};
29
30// Run the Actor and wait for it to finish
31const run = await client.actor("saswave/linkedin-mutual-connections-parser").call(input);
32
33// Fetch and print Actor results from the run's dataset (if any)
34console.log('Results from dataset');
35console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
36const { items } = await client.dataset(run.defaultDatasetId).listItems();
37items.forEach((item) => {
38 console.dir(item);
39});
40
41// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Linkedin Mutual Connections Parser API in JavaScript
The Apify API client for JavaScript is the official library that allows you to use Linkedin Mutual Connections Parser API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
npm install apify-client
Other API clients include:
Actor Metrics
16 monthly users
-
6 stars
62% runs succeeded
11 hours response time
Created in Nov 2023
Modified 12 days ago