LinkedIn Public Profile Scraper — Under Maintenance
Pricing
$0.90 / 1,000 results
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
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Categories
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
| Parameter | Type | Required | Description |
|---|---|---|---|
profiles | array | Yes | LinkedIn /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
| Field | Description |
|---|---|
vanity | Profile handle |
name | Full name |
headline | Headline |
location | Location |
positions | Experience entries (title/company/dates/description) |
education | Education entries |
people_also_viewed | Related profiles |
profile_url | Profile URL |
Pagination
Handled server-side — one run returns the full result set for your input list.
Python Client
from apify_client import ApifyClientclient = 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.