LinkedIn Profile Scraper - Extract Public Profile Data avatar

LinkedIn Profile Scraper - Extract Public Profile Data

Pricing

from $3.00 / 1,000 profile scrapeds

Go to Apify Store
LinkedIn Profile Scraper - Extract Public Profile Data

LinkedIn Profile Scraper - Extract Public Profile Data

Scrape public LinkedIn profiles by username or URL. Returns name, headline, about, positions, education, skills, activities, and articles.

Pricing

from $3.00 / 1,000 profile scrapeds

Rating

0.0

(0)

Developer

Farhan Ali

Farhan Ali

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

LinkedIn Profile Scraper creates a structured dataset of public LinkedIn profiles. Each dataset item can include the profile URL, name, headline, about summary, location, follower count, profile and background image URLs, work positions, education, certifications, skills, recent activity, and articles. Query the source using a list of profile URLs or usernames, control parallelism with concurrency, and retrieve records through the Apify Dataset API or export them as JSON, CSV, Excel, XML, or another supported format.

Dataset at a glance

PropertyValue
SourceLinkedIn public profiles (linkedin.com/in/...)
Record unitOne public profile
Input methodsprofiles (list of usernames or URLs)
Main identifiersprofileId, url
DeliveryApify Dataset and API
Export formatsJSON, CSV, Excel, XML, HTML
Update modelFresh records per Actor run
Pricing$3.00 per 1,000 profiles

Coverage and available records

The Actor scrapes public LinkedIn profiles by username or full URL. Supported behavior:

  • Profile inputsprofiles accepts usernames ("jeffweiner08") or full URLs ("https://www.linkedin.com/in/jeffweiner08").
  • Parallelismconcurrency (1–10, default 3) controls how many profiles are scraped in parallel.
  • Public data only — the Actor reads the public profile view; it does not authenticate or bypass login walls.

Records include work history (positions), education, certifications, skills, recent activities, articles, recommendations, and other public sections. Some sections may be empty for private or lightly-populated profiles.

Not currently collected: full connection lists, private-members-only content, and profiles that require authentication to view.

Data dictionary

FieldTypeNullableDescriptionExample
urlstringnoProfile URL; unique per profilehttps://www.linkedin.com/in/jeffweiner08
namestringyesFull display nameJeff Weiner
firstNamestringyesFirst nameJeff
lastNamestringyesLast nameWeiner
headlinestringyesProfile headlineFounding Partner · Founding LP...
aboutstringyesAbout/summary text (may contain HTML)For much of the last three decades...
locationstringyesDisplay locationUnited States
profileIdstringyesLinkedIn profile identifier; recommended deduplication key22330283
profilePicturestringyesProfile photo URLhttps://media.licdn.com/dms/...jpg
backgroundPicturestringyesBackground image URLhttps://media.licdn.com/dms/...jpg
followerCountintegeryesFollower count10370544
openToWorkbooleanyesOpen-to-work flagtrue
openToHiringbooleanyesOpen-to-hiring flagfalse
disambiguatingDescriptionstringyesPlatform subtitleCreator, Top Voice
positionsarrayyesWork history objectssee below
educationarrayyesEducation entries[]
certificationsarrayyesCertification entries[]
skillsarrayyesSkill objects with name[{"name":"Leadership"}]
activitiesarrayyesRecent post objects (postUrl, text, likes)[{"postUrl":"...","text":"..."}]
articlesarrayyesArticle objects (title, url, datePublished, likeCount)[{"title":"...","url":"..."}]
recommendationsarrayyesRecommendation objects (author, text)[{"author":"...","text":"..."}]
volunteer, projects, languages, honors, publications, courses, testScores, patents, organizations, causesarrayyesOther public sections[]

Each positions element typically contains title, company, companyUrl, companyLogo, location, startDate, endDate, and duration.

Example dataset record

{
"url": "https://www.linkedin.com/in/jeffweiner08",
"name": "Jeff Weiner",
"firstName": "Jeff",
"lastName": "Weiner",
"headline": "Founding Partner · Founding LP, Investment Committee · Co-Founder",
"location": "United States",
"profileId": "22330283",
"followerCount": 10370544,
"openToWork": true,
"openToHiring": false,
"positions": [
{
"title": "Founding Partner",
"company": "Next Play Ventures",
"companyUrl": "https://www.linkedin.com/company/next-play-ventures",
"location": "San Francisco Bay Area",
"startDate": "2020-07",
"duration": "6 years"
}
],
"education": [],
"certifications": [],
"skills": [
{"name": "Leadership"},
{"name": "Entrepreneurship"}
]
}

The record above was produced by a run with profiles: ["jeffweiner08"].

Query and input reference

InputTypeRequiredDefaultAccepted valuesDescription
profilesarrayyesusernames or full URLsList of profiles to scrape
concurrencyintegerno31–10Number of profiles scraped in parallel
proxyConfigurationobjectnoresidential proxyproxy settingsResidential proxies are used by default

Minimal request:

{
"profiles": ["jeffweiner08"],
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}

Advanced request (multiple profiles, higher parallelism):

{
"profiles": [
"jeffweiner08",
"https://www.linkedin.com/in/faizanaliii"
],
"concurrency": 5,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}

Retrieve the data through the API

  1. Start the Actor with a JSON input (see above).
  2. Wait for the run to finish.
  3. Retrieve items from the run's default dataset.
  4. Paginate or export the dataset.

Python example:

import json
import urllib.request
API_TOKEN = "<your Apify API token>"
ACTOR_ID = "datascrapers/linkedin-profile-scraper"
payload = {
"profiles": ["jeffweiner08"],
"concurrency": 3,
"proxyConfiguration": {"useApifyProxy": True, "apifyProxyGroups": ["RESIDENTIAL"]},
}
req = urllib.request.Request(
f"https://api.apify.com/v2/acts/{ACTOR_ID}/runs?token={API_TOKEN}",
data=json.dumps(payload).encode(),
headers={"Content-Type": "application/json"},
)
with urllib.request.urlopen(req) as resp:
run = json.loads(resp.read())["data"]
dataset_id = run["defaultDatasetId"]
with urllib.request.urlopen(
f"https://api.apify.com/v2/datasets/{dataset_id}/items?token={API_TOKEN}"
) as resp:
items = json.loads(resp.read())

For other languages, use the generated API tab on the Actor's page.

Data quality and record handling

  • Public data only — the Actor reads the public profile view; authenticated-only or private content is not collected.
  • Nullable/empty sectionseducation, certifications, skills, volunteer, and other sections are empty arrays when a profile does not expose them.
  • Raw HTMLabout may contain <br> and other HTML tags; strip them if you need plain text.
  • DeduplicationprofileId is the stable, recommended unique key; url is also unique.
  • Retries and errors — profiles that fail to load are retried; a profile that cannot be reached is skipped.
  • DatesstartDate/endDate follow LinkedIn's own formatting (YYYY-MM, Mon YYYY, or YYYY), so formats vary.

The Actor reflects the public profile at run time and does not retain historical snapshots.

Export and pipeline examples

DestinationRecommended methodTypical use
PostgreSQL/SupabaseDataset API or webhook consumerContact/profile store keyed by profileId
Google SheetsApify integrationReview a short list of profiles
S3/cloud storageScheduled export or integrationPeriodic profile snapshots
CRMDataset API or integrationLead enrichment from public profiles

Pricing and cost examples

The Actor uses pay-per-event billing. One charge event applies:

  • profile-scraped — $3.00 per 1,000 profiles returned.
RecordsEstimated base cost
1,000 profiles$3.00
10,000 profiles$30.00
100,000 profiles$300.00

Estimates assume the free-tier rate and no proxy markup; actual cost depends on your Apify plan and selected options.

Limitations and responsible data use

  • The Actor collects publicly accessible profile data only; it does not bypass login or paywalls.
  • Results depend on LinkedIn's current page structure; site changes can require Actor updates.
  • Some sections are conditional or empty (see Data dictionary).
  • The Actor does not retain historical snapshots unless you store them yourself.
  • You are responsible for complying with LinkedIn's terms of service and applicable privacy, contractual, and data-protection obligations.

Dataset questions

What does one dataset item represent?

One public LinkedIn profile with its work history, education, skills, and other public sections.

Which field should I use as a unique identifier?

profileId. url is also unique per profile.

Are fields nullable or conditional?

Yes. Many sections (education, certifications, skills) are empty arrays when a profile does not expose them; individual fields may be null.

Can I retrieve the records as CSV or JSON?

Yes. The default dataset supports JSON, CSV, Excel, and XML exports, and the Dataset API returns JSON.

How do I paginate large datasets?

The Actor accepts a list of profiles; split large lists into multiple runs, or paginate the default dataset via the Dataset API.

What counts as a billable result?

Each profile successfully returned counts as one profile-scraped event.

Data Scrapers support

Need an additional field, record type, or export workflow? Contact Data Scrapers at stardustspotlight@gmail.com. Include a sample source URL, required fields, expected record volume, and preferred delivery format.