npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-linkedin-profile-enrichment

v0.1.3

Published

Extract LIVE LinkedIn profile data from LinkedIn URLs. This works with people urls and companies urls. Simply upload a list of LinkedIn URLs and Automate your LinkedIn enrichment process with fresh data. No Cookies required. Cheap, high-quality, live lead

Readme

n8n-nodes-linkedin-profile-enrichment

This is an n8n community node. It lets you run the Apify Actor “LinkedIn Profile Scraper for cheap lead enrichment ✅” in your n8n workflows.

It enriches LinkedIn person and company URLs into structured JSON (headline, followers, experience, company details, etc.) without needing LinkedIn cookies.

Table of Contents

Installation

Follow the installation guide in the n8n community nodes documentation (there are 3 ways)

how to install

If you choose command line method :

npm install n8n-nodes-linkedin-profile-enrichment

Credentials

  • Apify API key : paste your Apify API token from your Apify account settings.

How to get your Apify API token How to paste your Apify API token in n8n

If you don’t have an Apify account yet, create an account first by clicking here, then create a token in your Apify account settings.

Usage

Add the node Apify LinkedIn Profile Enrichment to your workflow, then:

  • Set Authentication to Apify API key
  • Add at least one LinkedIn URLs
  • Execute the node

The node runs the Actor on Apify, then returns the results as n8n output items.

Input format

The node expects a list of URLs like : https://www.linkedin.com/in/williamhgates

It also works with companies : https://www.linkedin.com/company/tesla-motors

Output (what to expect)

The Actor can return person and company rows. Fields vary by row type, but commonly include:

  • Person: full_name, first_name, last_name, headline, country, city, follower_count, experience, education, …
  • Company: name, industry, followers, founded, size, …

More information about the output here.

Example output: example output

A simple demo workflow (copy/paste into n8n)

demo overview

{
  "name": "Demo workflow for LinkedIn Profile Enrichment",
  "nodes": [
    {
      "parameters": {},
      "type": "n8n-nodes-base.manualTrigger",
      "typeVersion": 1,
      "position": [
        0,
        0
      ],
      "id": "ba404bef-296c-4bfa-ab48-e65e591b0fe5",
      "name": "When clicking ‘Execute workflow’"
    },
    {
      "parameters": {
        "startUrls": {
          "items": [
            {
              "url": "https://www.linkedin.com/in/williamhgates/"
            }
          ]
        }
      },
      "type": "CUSTOM.apifyLinkedinProfileEnrichment",
      "typeVersion": 1,
      "position": [
        208,
        0
      ],
      "id": "5a30781d-3213-4a3a-80a5-6ed2a3fa4a9d",
      "name": "Apify LinkedIn Profile Enrichment",
      "credentials": {
        "apifyApi": {
          "id": "QEjys0HbkRgQcAYY",
          "name": "Apify account"
        }
      }
    },
    {
      "parameters": {
        "method": "POST",
        "url": "https://api.twenty.com",
        "options": {}
      },
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.3,
      "position": [
        416,
        0
      ],
      "id": "e73a386f-913b-439b-a7f4-5bc819157e3a",
      "name": "Save to my CRM"
    }
  ],
  "pinData": {},
  "connections": {
    "When clicking ‘Execute workflow’": {
      "main": [
        [
          {
            "node": "Apify LinkedIn Profile Enrichment",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Apify LinkedIn Profile Enrichment": {
      "main": [
        [
          {
            "node": "Save to my CRM",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "active": false,
  "settings": {
    "executionOrder": "v1",
    "availableInMCP": false
  },
  "versionId": "f0f06bed-eb41-4724-9ef7-17211b4351f2",
  "meta": {
    "templateCredsSetupCompleted": true,
    "instanceId": "89f981c253a7e977b721328c650eb67d6403ef867ee577cd9362b9454ab501f5"
  },
  "id": "FFziht_wZ8dMBuaLbWetI",
  "tags": []
}

Resources

  • n8n community nodes installation: https://docs.n8n.io/integrations/community-nodes/installation/
  • LinkedIn Profile Scraper documentation: https://apify.com/anchor/linkedin-profile-enrichment

Troubleshooting

  • Runs are executed on Apify; if a run fails, check the run logs in your Apify console for details.
  • “No valid credentials found…”, make sure:
    • You created the matching credential in n8n, and
    • The node’s Authentication option matches the credential type you configured.

License

MIT