Find and Enrich Profiles on People with People API

Enrich LinkedIn profiles; identify people from emails or names; search for prospects; get profile pictures.

Not a developer? Sapiengraph ↗ is a Google Sheet addon that grants you Proxycurl powers.

Person Lookup Endpoint

Identify people by a person's name and company information.

Input
bill, gates, gatesfoundation

curl \
  -G \
  -H "Authorization: Bearer ${YOUR_API_KEY}" \
  'https://nubela.co/proxycurl/api/linkedin/profile/resolve' \
  --data-urlencode 'company_domain=gatesfoundation.org' \
  --data-urlencode 'first_name=Bill' \
  --data-urlencode 'similarity_checks=include' \
  --data-urlencode 'enrich_profile=enrich' \
  --data-urlencode 'location=Seattle' \
  --data-urlencode 'title=Co-chair' \
  --data-urlencode 'last_name=Gates'

Output
LinkedIn URL
linkedin.com/in/williamhgates


People Profile Endpoint

Enrich a personal profile with structured data

Input
linkedin.com/in/williamhgates
  
curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/v2/linkedin' \
    --data-urlencode 'url=https://www.linkedin.com/in/williamhgates/' \
    --data-urlencode 'fallback_to_cache=on-error' \
    --data-urlencode 'use_cache=if-present' \
    --data-urlencode 'skills=include' \
    --data-urlencode 'inferred_salary=include' \
    --data-urlencode 'personal_email=include' \
    --data-urlencode 'personal_contact_number=include' \
    --data-urlencode 'twitter_profile_id=include' \
    --data-urlencode 'facebook_profile_id=include' \
    --data-urlencode 'github_profile_id=include' \
    --data-urlencode 'extra=include'
  

Output
company logo

Bill Gates

Co-chair, Bill & Melinda Gates Foundation

Personal Email

Personal Number

Industry

Articles

Extra

Other



Role Lookup Endpoint

Identify the decision maker of a given role in a target company

Input
co-chair, gates foundation
  
curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/find/company/role/' \
    --data-urlencode 'role=co-chair' \
    --data-urlencode 'company_name=gates foundation' \
    --data-urlencode 'enrich_profile=enrich'
  

Output
LinkedIn URL
linkedin.com/in/williamhgates


Person Profile Picture Endpoint Free

Get the profile picture of a Person

Input
linkedin.com/in/williamhgates
  
curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/linkedin/person/profile-picture' \
    --data-urlencode 'linkedin_person_profile_url=https://www.linkedin.com/in/williamhgates/'

Output

Person profile picture

Profile picture

Data-driven illustration
Powered by Proxycurl

Other Endpoints related to People

Scrape LinkedIn profiles; get contact Information; get venture funding data; list jobs
person icon

People Search Endpoint

Input

People Profile URL

Output

LinkedIn (People) Profile URL


curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/search/person/' \
    --data-urlencode 'country=us'
    
email icon

Reverse Email Lookup Endpoint

Input

Person Email Address

Output

LinkedIn (People) Profile URL, Twitter (People) Profile URL, etc.


curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/linkedin/profile/resolve/email' \
    --data-urlencode 'lookup_depth=deep' \
    --data-urlencode 'email=dania[email protected]' \
    --data-urlencode 'enrich_profile=enrich'
    
email icon

Personal Email Lookup Endpoint

Input

People Profile URL

Output

List of Personal Email

            
curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/linkedin/profile/resolve' \
    --data-urlencode 'company_domain=gatesfoundation.org' \
    --data-urlencode 'first_name=Bill' \
    --data-urlencode 'similarity_checks=include' \
    --data-urlencode 'enrich_profile=enrich' \
    --data-urlencode 'location=Seattle' \
    --data-urlencode 'title=Co-chair' \
    --data-urlencode 'last_name=Gates'
    
work-email icon

Work Email Lookup Endpoint

Input

Work Email Address

Output

LinkedIn (People) Profile URL


curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/linkedin/profile/email' \
    --data-urlencode 'linkedin_profile_url=https://sg.linkedin.com/in/williamhgates'
    
phone-number icon

Phone Number Lookup Endpoint

Input

A Person Profile URL

Output

List of contact numbers


curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/contact-api/personal-contact' \
    --data-urlencode 'linkedin_profile_url=https://www.linkedin.com/in/joe-doe-dummy/' \
    --data-urlencode 'page_size=0'
    
See API Cheatsheet

Latest Articles

Here's what we've been up to recently.