LinkedIn API
Public profiles, company pages, posts and job listings. Logged-out data only.
4
endpoints
4
credits, cheapest call
A failed call is refunded
—
success rate
Published once there is traffic
Endpoints
GET /v1/linkedin/profileGet a public LinkedIn profile
linkedin_profile10credits
GET /v1/linkedin/companyGet a public LinkedIn company page
linkedin_company6credits
GET /v1/linkedin/postsGet recent posts from a person or company
linkedin_post[]6credits
GET /v1/linkedin/jobsSearch public job postings
linkedin_job[]4credits
What a response looks like
LinkedIn data comes back in LinkedIn’s own shape, named after LinkedIn's own pages, since LinkedIn has no public data API: linkedin_profile, linkedin_company, linkedin_post, linkedin_job. This is /v1/linkedin/profile, unabridged.
{
"data": {
"vanity_name": "example",
"url": "https://www.linkedin.com/in/example/",
"full_name": "Mara Novak",
"first_name": "Mara",
"last_name": "Novak",
"headline": "Backend Engineer at Ravel",
"about": null,
"location": "Prague, Czechia",
"profile_picture_url": "https://cdn.example/li/n2PSSiHZq_2x.jpg",
"follower_count": 2499,
"connection_count": 453,
"open_to_work": false,
"current_company": {
"name": "Ravel",
"url": "https://www.linkedin.com/company/ravel/"
},
"experience": [
{
"title": "Backend Engineer",
"company": {
"name": "Ravel",
"url": "https://www.linkedin.com/company/ravel/"
},
"employment_type": "Full-time",
"location": "Prague, Czechia",
"start_date": "2022-04",
"end_date": null,
"description": "Own the data platform end to end: ingestion, the warehouse and the on-call rota."
},
{
"title": "Founder",
"company": {
"name": "Northbank",
"url": "https://www.linkedin.com/company/northbank/"
},
"employment_type": "Full-time",
"location": "Prague, Czechia",
"start_date": "2021-01",
"end_date": "2022-06",
"description": null
},
{
"title": "Product Designer",
"company": {
"name": "Northbank",
"url": "https://www.linkedin.com/company/northbank/"
},
"employment_type": "Full-time",
"location": "Prague, Czechia",
"start_date": "2017-02",
"end_date": "2021-06",
"description": null
}
],
"education": [
{
"school": {
"name": "Universidade de Lisboa",
"url": "https://www.linkedin.com/school/universidadedelisboa/"
},
"degree": "Bachelor of Science - BS",
"field_of_study": "Economics",
"start_year": 2012,
"end_year": 2016
}
],
"skills": [
"Product Strategy",
"Figma"
]
},
"meta": {
"request_id": "req_7f3ac1e94b2d40f8a1c6e5d2",
"credits_charged": 10,
"credits_remaining": 74218,
"cached": false,
"fetched_at": "2026-09-20T09:12:03Z",
"next_cursor": null
}
}