Search employees with Employee Listing API Learn more
0-10 employees found.
Chris Lawrence
Account ExecutiveDenise Fulmer
Sales and Customer Service RepresentativeGeorge Hribick
Facilities Maintenance & Security ManagerJeff Sauder
Local ManagerKristen Curtis
Business Systems AnalystRon Horton
Sr. Network TechnicianSteven Young
Fixed Asset AccountantWhitey Klerr
retiredProxycurl is a developer's tool to integrate People/Company related data into their applications
import requests
api_endpoint = 'https://nubela.co/proxycurl/api/linkedin/company/employees/'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
'employment_status': 'current',
'url': 'https://www.linkedin.com/company/nubela',
}
response = requests.get(api_endpoint,
params=params,
headers=header_dic)