Fetch fresh job posting data on any company into your data-driven application
{
"employee": {
"role": "Scientist",
"name": Isaac Newton,
}
}
Given a target company, our Job Search Endpoint will return an exhaustive list of all jobs posted by this company on LinkedIn.
# List jobs posted by Apple
$ curl \
-G \
-H "Authorization: Bearer ${YOUR_API_KEY}" \
'https://nubela.co/proxycurl/api/v2/linkedin/company/job' \
--data-urlencode 'enrich_profiles=enrich' \
--data-urlencode 'job_type=full-time' \
--data-urlencode 'experience_level=senior' \
--data-urlencode 'when=past-month' \
--data-urlencode 'flexibility=remote' \
--data-urlencode 'geo_id=92000000' \
--data-urlencode 'keyword=software engineer' \
--data-urlencode 'search_id=1441'
{
"job": [
{
"company": "Apple",
"company_url": "https://www.linkedin.com/company/apple",
"job_title": "Junior Software Development Engineer - Apple Vision Pro",
"job_url": "https://www.linkedin.com/jobs/view/junior-software-development-engineer-apple-vision-pro-at-apple-3642700570",
"list_date": "2023-08-29",
"location": "Cupertino, CA"
},
{
"company": "Apple",
"company_url": "https://www.linkedin.com/company/apple",
"job_title": "Junior Software Development Engineer - Apple Vision Pro",
"job_url": "https://www.linkedin.com/jobs/view/junior-software-development-engineer-apple-vision-pro-at-apple-3685453839",
"list_date": "2023-08-31",
"location": "Cupertino, CA"
},
...
]
}
Get details of any job posted on LinkedIn.
# Getting job details of a specific job post
$ curl \
-G \
-H "Authorization: Bearer ${YOUR_API_KEY}" \
'https://nubela.co/proxycurl/api/linkedin/job' \
--data-urlencode 'url=https://www.linkedin.com/jobs/view/junior-software-development-engineer-apple-vision-pro-at-apple-3642700570'
{
"linkedin_internal_id": "3642700570",
"job_description": " \n**Summary \n** \nApple is where individual imaginations gather together, committing to the values that lead to great work. Every new product we build, service we create, or Apple Store experience we deliver is the result of us making each other’s ideas stronger...",
"apply_url": "https://jobs.apple.com/en-us/details/200461793?board_id=17682&cid=scrape_co_us_linkedin_nationwide_software+services",
"title": "Junior Software Development Engineer - Apple Vision Pro",
"location": {
"country": "United State",
"region": "California",
"city": "Cupertino",
"postal_code": null,
"latitude": null,
"longitude": null,
"street": null
},
"company": {
"name": "Apple",
"url": "https://www.linkedin.com/company/apple",
"logo": "https://media.licdn.com/dms/image/C560BAQHdAaarsO-eyA/company-logo_100_100/0/1595530301220?e=2147483647&v=beta&t=a6najp8ed_b33hJrmJoJ8ysmVM3vcI4zriZFDw4FUWc"
},
"seniority_level": "Not Applicable",
"industry": [
"Computers and Electronics Manufacturing"
],
"employment_type": "Full-time",
"job_functions": [
"Engineering and Information Technology"
],
"total_applicants": 200
}
Rotational Software Engineer
Meta
New York, NY
2023-09-06
Software Engineer, Google Ads
Bengaluru, Karnataka, India
2023-09-07
Junior Software Development Engineer - Apple Vision Pro
Apple
Cupertino, CA
2023-08-29
Software Engineer, Front End
Meta
New York, NY
2023-09-02
Software Engineer, Backend
Singapore
2023-08-24
Job postings are a proxy for how fast a company is planning to grow it's team. Monitor the growth of job postings of any target company with Proxycurl's Job Listing Count API.
See Docs for Jobs Listing Count API EndpointSearch for job posts matching keywords that you provide.
Use the keyword parameter in Job Search EndpointHere's what we've been up to recently.
Learn all about the Professional Social Network API, with comprehensive Python code demos. Dive into the world of Professional Social Network APIs, official and third-party alternatives, and understand how to access and utilize Professional Social Network profile data through Python code examples.
15 MIN READ
💡Old post - republished with new content You are probably reading this article because you are seeking a solution to fetch fresh Professional Social Network profile data at scale. In this article, I'll introduce and provide a cursory review of the top 5 Professional Social Network scraping API
6 MIN READ
In this first chapter of the "Ultimate Guide to the Professional Social Network API" series, my goal is to get your product integrated with Professional Social Network API without the need to be approved as a Professional Social Network Partner. This guide is intended for software engineers comfortable
11 MIN READ