Disclaimer: PII is blurred as this is a public-facing website. When you use our endpoint, you will get complete information.
Additional data points available (contact info, skills, certifications, etc). See docs.
curl \
-G \
-H "Authorization: Bearer ${YOUR_API_KEY}" \
'https://nubela.co/proxycurl/api/v2/linkedin' \
--data-urlencode 'linkedin_profile_url=https://www.linkedin.com/in/williamhgates/
Our real-time API responds in ~2s.
Make concurent requests, up to 300 requests / minute.
We sprinkle sample code and sample responses with every API endpoint.
Disclaimer: PII is blurred as this is a public-facing website. When you use our endpoint, you will get complete information.
Additional data points available (contact info, skills, certifications, etc). See docs.
How to get LinkedIn profiles contact information at scale, with downloadable code
LinkedIn allows you to get contact information of their member profiles, but through exorbitant and highly-restrictive LinkedIn own’s products, such as InMail. Many third-party API such as our own Proxycurl Contact API can pull contact data of profiles - personal and work emails and even contact numbers. In the article, we shared the full working code to a Django app that does just that.
Continue storyGiven a LinkedIn profile URL, get a list of email addresses.
curl \
-G \
-H "Authorization: Bearer ${YOUR_API_KEY}" \
'https://nubela.co/proxycurl/api/contact-api/personal-email' \
--data-urlencode 'linkedin_profile_url=https://www.linkedin.com/in/williamhgates/'
Co-chair, Bill & Melinda Gates Foundation
{
"emails": [
"bill*@mi*ro*oft.com",
"bi*l.g*te*@gatesf*un**ti*n.org"
],
"invalid_emails": []
}
How to programmatically generate leads & write personalized cold emails
In this article, we dived into the greater world of prospecting and cold emailing, beyond just getting contact information. Using a series of API endpoints such as Person Search Endpoint to find potential leads, then enrich the profile with contact data using Email Lookup Endpoint. Finally, using ChatGPT to automate writing compelling, personalized cold emails.
Continue storyCompanies of all sizes need access to Proxycurl, so we have a flexible pricing system for any size of project or company.
Here'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