LinkedIn Public Profile Scraper — Under Maintenance avatar

LinkedIn Public Profile Scraper — Under Maintenance

Pricing

$0.90 / 1,000 results

Go to Apify Store
LinkedIn Public Profile Scraper — Under Maintenance

LinkedIn Public Profile Scraper — Under Maintenance

Public/open LinkedIn profile by handle/URL: name, headline, experience, education, also-viewed. No login. $0.90/1k.

Pricing

$0.90 / 1,000 results

Rating

0.0

(0)

Developer

Danny

Danny

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

LinkedIn Profile Scraper

Scrape a PUBLIC/open LinkedIn profile by handle or /in/

Public, logged-out data only — no login, no cookies, no account.

Input

ParameterTypeRequiredDescription
profilesarrayYesLinkedIn /in/

Example Input

{
"profiles": [
"williamhgates",
"https://www.linkedin.com/in/satyanadella/"
]
}

Output

Each dataset item:

{
"vanity": "...",
"name": "example",
"headline": "...",
"location": "...",
"positions": "...",
"education": "...",
"people_also_viewed": "...",
"profile_url": "..."
}

Fields

FieldDescription
vanityProfile handle
nameFull name
headlineHeadline
locationLocation
positionsExperience entries (title/company/dates/description)
educationEducation entries
people_also_viewedRelated profiles
profile_urlProfile URL

Pagination

Handled server-side — one run returns the full result set for your input list.

Python Client

from apify_client import ApifyClient
client = ApifyClient("YOUR_TOKEN")
run = client.actor("good-apis/linkedin-profile-scraper").call(run_input={
"profiles": [
"williamhgates",
"https://www.linkedin.com/in/satyanadella/"
]
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

Node.js Client

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_TOKEN' });
const run = await client.actor('good-apis/linkedin-profile-scraper').call({
"profiles": [
"williamhgates",
"https://www.linkedin.com/in/satyanadella/"
]
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
for (const item of items) console.log(item);

Install the client with npm install apify-client.

FAQ

What input? A list of /in/<vanity> URLs or handles in profiles.

Why fewer fields sometimes? This is cookieless (no login). OPEN profiles return full experience; a locked profile returns identity + current-company only — reported honestly, never fabricated.

One billed result? One profile = one result at $0.90 / 1,000.