LinkedIn Profile
Extract a public LinkedIn profile — experience, education, skills, certifications, publications, and volunteering.
API usage
Add &scraper=linkedin-profile to a Crawling API request. URL-encode the target URL in the url parameter.
curl 'https://api.crawlbase.com/?token=YOUR_TOKEN' \
--data-urlencode 'url=https://www.linkedin.com/in/kaitlyn-owen' \
--data-urlencode 'scraper=linkedin-profile' -Gfrom crawlbase import CrawlingAPI
api = CrawlingAPI({'token': 'YOUR_TOKEN'})
res = api.get(
'https://www.linkedin.com/in/kaitlyn-owen',
{'scraper': 'linkedin-profile'}
)
import json
data = json.loads(res['body'])const { CrawlingAPI } = require('crawlbase');
const api = new CrawlingAPI({ token: 'YOUR_TOKEN' });
const res = await api.get(
'https://www.linkedin.com/in/kaitlyn-owen',
{ scraper: 'linkedin-profile' }
);
const data = JSON.parse(res.body);require 'crawlbase'
api = Crawlbase::API.new(token: 'YOUR_TOKEN')
res = api.get('https://www.linkedin.com/in/kaitlyn-owen', scraper: 'linkedin-profile')
data = JSON.parse(res.body)Example input URL
The URL passed in the url parameter (URL-decoded for readability):
https://www.linkedin.com/in/kaitlyn-owenResponse shape
JSON response body. Field types may be null when the source page omits the value.
Full display name.
Profile headline.
City, region, country.
About / summary section.
Profile photo URL.
Connection count (often "500+").
Work experiences with title, company, dates, description.
Degrees with school, field, dates.
Skill name strings.
Certifications with name, issuer, date.
Languages with proficiency level.
Sample response
{
"full_name": "Kaitlyn Owen",
"headline": "Senior Software Engineer at Acme Corp",
"location": "San Francisco Bay Area",
"connections_count": "500+",
"experience": [
{
"title": "Senior Software Engineer",
"company": "Acme Corp",
"start_date": "2022",
"end_date": "Present"
}
]
}
