NAV
shell python

Overview

Proxycurl API is a set of tools designed to serve as plumbing for fresh and processed data in your application. We sit as a fully-managed layer between your application and raw data so that you can focus on building the application instead of worrying about scraping and processing data at scale.

With Proxycurl API, you can

Open API 3.0

Download Proxycurl's OpenAPI 3.0 specifications.

Authentication

Proxycurl's API uses bearer tokens to authenticate users. Each user is assigned a randomly generated secret key under the API section in the dashboard.

The bearer token is injected in the Authorization header

curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/v2/linkedin' \
    --data-urlencode 'url=https://www.linkedin.com/in/williamhgates'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/v2/linkedin'
linkedin_profile_url = 'https://www.linkedin.com/in/williamhgates'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}

response = requests.get(api_endpoint,
                        params={'url': linkedin_profile_url},
                        headers=header_dic)

Rate limit

You can make up to 300 requests to our API every minute. The window for the rate limit is 5 minutes. So you can burst up to 1500 requests every 5 minutes.

At periods of high load, our system might tighten rate limits for all accounts to ensure that our services remain accessible for all users.

We return a status code of error 429 when you are rate limited. You can also get a status code error of 429 if the capacity on our end limits us.

You should handle 429 errors and apply exponential backoff.

Accounts on trial (that is before any top ups have been made) are limited to 2 requests every minute. You get the normal rate limit upon making at least one credit top-up.

Rate limit for Free APIs

To sustainably provide free APIs, rate limit for free APIs depends on your subscription plan:

Credits

Each valid request requires at least 1 credit to be processed.

A credit is consumed if and only if the request is parsed successfully.

A successful request is a request that returns with either a 200 or 404 HTTP status code.

404 status code is considered a successful request because we have commited resources to source the profile and have found that it is not a valid profile.

Timeouts and API response time

Proxycurl API endpoints take an average of 2 seconds to complete.

You are encouraged to make concurrent requests to our API service to maximize throughput. See this post on how you can maximise throughput.

We recommend a timeout of 60 seconds.

Errors

These are the common errors that could be returned by our API:

HTTP Code Charge? Description
400 No Invalid parameters provided. Refer to the documentation and message body for more info
401 No Invalid API Key
403 No You have run out of credits
404 Yes The requested resource (e.g: user profile, company) could not be found
429 No Rate limited. Please retry
500 No There is an error with our API. Please Contact us for assistance
503 No Enrichment failed, please retry.

You will never be charged for errors that represent failure. However, in our case, 404s represent successful queries that discovered a lack of data. Therefore, while we do return a status code of 404 for compatibility reasons, we do not view a lack of data as a true error, and we do charge.

Explain it to me like I'm 5

Jobs API

What you have What you get Which API Endpoint to use?
LinkedIn (Company) Profile URL Detailed job data Job Profile Endpoint
LinkedIn (Company) Profile URL List of open job position Job Search Endpoint
LinkedIn (Company) Profile URL Count number of jobs posted Jobs Listing Count Endpoint

Company API

What you have What you get Which API Endpoint to use?
LinkedIn (Company) Profile URL Profile data with profile picture, office locations, etc Company Profile Endpoint
LinkedIn (Company) Profile URL Number of employees in a company Employee Count Endpoint
LinkedIn (Company) Profile URL List of employees Employee Listing Endpoint
LinkedIn (Company) Profile URL Profile picture of a company Company Profile Picture Endpoint
Company name or company domain LinkedIn (Company) Profile URL Company Lookup Endpoint
LinkedIn (Company) Profile URL List of employees Employee Search Endpoint

Contact API

What you have What you get after lookup Which API Endpoint to use?
Linkedin (Person) Profile URL Work Email Address Work Email Lookup Endpoint
LinkedIn (Person) Profile URL List of Personal Contact Numbers Personal Contact Number Lookup Endpoint
LinkedIn (Person) Profile URL List of Personal Emails Personal Email Lookup Endpoint
Email Address Disposable Email Check Disposable email Endpoint
Work Email Address LinkedIn (Person) Profile URL Reverse Work Email Lookup Endpoint

People API

What you have What you get Which API Endpoint to use?
LinkedIn (Person) Profile URL Profile data with profile picture, job history, etc. Person Profile Endpoint
First name and Company domain LinkedIn (Person) Profile URL Person Lookup Endpoint
LinkedIn (Person) Profile URL Profile picture of a person Person Profile Picture Endpoint

School API

What you have What you get Which API Endpoint to use?
LinkedIn (School) Profile URL Profile data with profile picture, school location, etc School Profile Endpoint
LinkedIn (School) Profile URL List of students Student Listing Endpoint

Search API

What you have What you get Which API Endpoint to use?
Some parameters of companies List of companies Company Search Endpoint
Person data LinkedIn (Person) Profile URL Person Search Endpoint
LinkedIn (Company) Profile URL List of open job position Job Search Endpoint

Meta API

What you have What you get Which API Endpoint to use?
A Proxycurl API Key Balance of credits View Credit Balance Endpoint

Test Proxycurl API with Postman

Postman is a tool that lets you test out API services easily. We have built a Postman Collection that will let you easily test out Proxycurl API without writing code. This is how you can start testing out

Requirements

Testing out Proxycurl API with Postman

  1. Visit Proxycurl's Postman Collection, and Fork it. Give it a Fork label and Workspace, and click "Fork Collection"
  2. Go to https://web.postman.co/home and visit the Workspace for which you forked Proxycurl's Postman collection into.
  3. Click on "Proxycurl" collection under the workspace.
  4. Under the "Auth" tab, enter the Proxycurl API Key under "Token".
  5. You are done. You can now explore any Proxycurl API Endpoints by clicking into the API endpoint.
  6. To make API requests, modify parameter values and click "Send". You will see then a response.

Libraries

Python SDK

We built Proxycurl with concurrency in mind. This is why we set out to develop our Python SDK around the various concurrency models that Python offers. proxycurl-py is our officially supported Python library published on PyPi.

proxycurl-py supports asyncio, gevent and twisted concurrency models.

proxycurl-py is tested on Python 3.7, 3.8 and 3.9.

proxycurl-py is open-sourced and has its own Github repository. So feel free to make pull requests or fork it.

Get started with proxycurl-py today by adding it to your Python 3 project with the following commands:

# install proxycurl-py with asyncio
$ pip install 'proxycurl-py[asyncio]'

# install proxycurl-py with gevent
$ pip install 'proxycurl-py[gevent]'

# install proxycurl-py with twisted
$ pip install 'proxycurl-py[twisted]'

Using proxycurl-py

Here is how you can enrich a LinkedIn Profile URL with it's profile data:

from proxycurl.asyncio import Proxycurl
import asyncio

proxycurl = Proxycurl()
person = asyncio.run(proxycurl.linkedin.person.get(
    url='https://www.linkedin.com/in/williamhgates/'
))
print('Person Result:', person)

Javascript/NodeJS SDK

You can find our Javascript/NodeJS library on Github here.

You can add install the library by running:

$ npm install proxycurl-js-linkedin-profile-scraper

Jobs API

Jobs Listing Count Endpoint

GET /proxycurl/api/v2/linkedin/company/job/count

Cost: 2 credits / successful request.

Count number of jobs posted by a company on LinkedIn

curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/v2/linkedin/company/job/count' \
    --data-urlencode 'job_type=entry_level' \
    --data-urlencode 'experience_level=entry_level' \
    --data-urlencode 'when=past-month' \
    --data-urlencode 'flexibility=remote' \
    --data-urlencode 'geo_id=92000000' \
    --data-urlencode 'keyword=software engineer' \
    --data-urlencode 'search_id=1035'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/v2/linkedin/company/job/count'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'job_type': 'entry_level',
    'experience_level': 'entry_level',
    'when': 'past-month',
    'flexibility': 'remote',
    'geo_id': '92000000',
    'keyword': 'software engineer',
    'search_id': '1035',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
job_type no
The nature of the job.
It accepts the following 7 case-insensitive values only:
- full-time
- part-time
- contract
- internship
- temporary
- volunteer
- anything (default)
entry_level
experience_level no
The experience level needed for the job.
It accepts the following 6 case-insensitive values only:
- internship
- entry_level
- associate
- mid_senior_level
- director
- anything (default)
entry_level
when no
The time when the job is posted,
It accepts the following case-insensitive values only:
- yesterday
- past-week
- past-month
- anytime (default)
past-month
flexibility no
The flexibility of the job.
It accepts the following 3 case insensitive values only:
- remote
- on-site
- hybrid
- anything (default)
remote
geo_id no
The geo_id of the location to search for.
For example, 92000000 is the geo_id of world wide.

See this article as to how you may be able to match regions to geo_id input values.
92000000
keyword no
The keyword to search for.
software engineer
search_id no
The search_id of the company on LinkedIn.
You can get the search_id of a LinkedIn company via
Company Profile API.
1035

Response

{
    "count": 887622
}
Key Description Example
count
887622

Response Headers

Header Key Description Example
X-Proxycurl-Credit-Cost Total cost of credits for this API call 2

Job Search Endpoint

GET /proxycurl/api/v2/linkedin/company/job

Cost: 2 credits / successful request.

List jobs posted by a company on LinkedIn

curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/v2/linkedin/company/job' \
    --data-urlencode 'job_type=anything' \
    --data-urlencode 'experience_level=entry_level' \
    --data-urlencode 'when=past-month' \
    --data-urlencode 'flexibility=remote' \
    --data-urlencode 'geo_id=92000000' \
    --data-urlencode 'keyword=software engineer' \
    --data-urlencode 'search_id=1035'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/v2/linkedin/company/job'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'job_type': 'anything',
    'experience_level': 'entry_level',
    'when': 'past-month',
    'flexibility': 'remote',
    'geo_id': '92000000',
    'keyword': 'software engineer',
    'search_id': '1035',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
job_type no
The nature of the job.
It accepts the following 7 case-insensitive values only:
- full-time
- part-time
- contract
- internship
- temporary
- volunteer
- anything (default)
anything
experience_level no
The experience level needed for the job.
It accepts the following 6 case-insensitive values only:
- internship
- entry_level
- associate
- mid_senior_level
- director
- anything (default)
entry_level
when no
The time when the job is posted,
It accepts the following case-insensitive values only:
- yesterday
- past-week
- past-month
- anytime (default)
past-month
flexibility no
The flexibility of the job.
It accepts the following 3 case insensitive values only:
- remote
- on-site
- hybrid
- anything (default)
remote
geo_id no
The geo_id of the location to search for.
For example, 92000000 is the geo_id of world wide.

See this article as to how you may be able to match regions to geo_id input values.
92000000
keyword no
The keyword to search for.
software engineer
search_id no
The search_id of the company on LinkedIn.
You can get the search_id of a LinkedIn company via
Company Profile API.
1035

Response

{
    "job": [
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Product Management: Intern Opportunities for University Students",
            "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203330682",
            "list_date": "2022-10-09",
            "location": "New York, NY"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Content Strategist",
            "job_url": "https://www.linkedin.com/jobs/view/content-strategist-at-microsoft-3257692764",
            "list_date": "2022-10-21",
            "location": "United States"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Product Management: Intern Opportunities for University Students",
            "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3285166057",
            "list_date": "2022-10-16",
            "location": "New Jersey, United States"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Product Management: Intern Opportunities for University Students",
            "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203328879",
            "list_date": "2022-10-28",
            "location": "Hawaii, United States"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Product Management: Intern Opportunities for University Students",
            "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203334096",
            "list_date": "2022-10-09",
            "location": "Mountain View, CA"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Content Strategist",
            "job_url": "https://www.linkedin.com/jobs/view/content-strategist-at-microsoft-3257696537",
            "list_date": "2022-10-21",
            "location": "Hawaii, United States"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Product Management: Intern Opportunities for University Students",
            "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203327999",
            "list_date": "2022-10-29",
            "location": "Illinois, United States"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Product Management: Intern Opportunities for University Students",
            "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203330696",
            "list_date": "2022-10-09",
            "location": "Washington, United States"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Product Management: Intern Opportunities for University Students",
            "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203327990",
            "list_date": "2022-10-28",
            "location": "Massachusetts, United States"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Product Management: Intern Opportunities for University Students",
            "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203330693",
            "list_date": "2022-10-28",
            "location": "Utah, United States"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Product Management: Intern Opportunities for University Students",
            "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203333219",
            "list_date": "2022-10-09",
            "location": "Washington, DC"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Product Management: Intern Opportunities for University Students",
            "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3326765134",
            "list_date": "2022-10-26",
            "location": "Bellevue, WA"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Program Manager (Chief of Staff Office)",
            "job_url": "https://www.linkedin.com/jobs/view/program-manager-chief-of-staff-office-at-microsoft-3321408962",
            "list_date": "2022-10-20",
            "location": "United States"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Product Management: Intern Opportunities for University Students",
            "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203332363",
            "list_date": "2022-10-09",
            "location": "Dallas, TX"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Product Management: Intern Opportunities for University Students",
            "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203331488",
            "list_date": "2022-10-09",
            "location": "Pennsylvania, United States"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Content Strategist",
            "job_url": "https://www.linkedin.com/jobs/view/content-strategist-at-microsoft-3257696539",
            "list_date": "2022-10-21",
            "location": "New York, NY"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Product Management: Intern Opportunities for University Students",
            "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203327997",
            "list_date": "2022-10-28",
            "location": "North Carolina, United States"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Product Management: Intern Opportunities for University Students",
            "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203334106",
            "list_date": "2022-10-09",
            "location": "Florida, United States"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Product Management: Intern Opportunities for University Students",
            "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203334098",
            "list_date": "2022-10-09",
            "location": "Cambridge, MA"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Content Strategist",
            "job_url": "https://www.linkedin.com/jobs/view/content-strategist-at-microsoft-3257696527",
            "list_date": "2022-10-21",
            "location": "San Francisco, CA"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Content Strategist",
            "job_url": "https://www.linkedin.com/jobs/view/content-strategist-at-microsoft-3257697337",
            "list_date": "2022-10-21",
            "location": "Florida, United States"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Business Operations: Full-time Opportunities for University Graduates, United States",
            "job_url": "https://www.linkedin.com/jobs/view/business-operations-full-time-opportunities-for-university-graduates-united-states-at-microsoft-3301555138",
            "list_date": "2022-10-28",
            "location": "Bellevue, WA"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Product Management: Intern Opportunities for University Students",
            "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203328882",
            "list_date": "2022-10-28",
            "location": "Delaware, United States"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Product Management: Intern Opportunities for University Students",
            "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203331492",
            "list_date": "2022-10-09",
            "location": "Oregon, United States"
        },
        {
            "company": "Microsoft",
            "company_url": "https://www.linkedin.com/company/microsoft",
            "job_title": "Business Operations: Full-time Opportunities for University Graduates, United States",
            "job_url": "https://www.linkedin.com/jobs/view/business-operations-full-time-opportunities-for-university-graduates-united-states-at-microsoft-3301550928",
            "list_date": "2022-10-28",
            "location": "Redmond, WA"
        }
    ],
    "next_page_api_url": "http://nubela.co/proxycurl/proxycurl/api/v2/linkedin/company/job?pagination=eyJwYWdlIjogMX0\u0026search_id=1035",
    "next_page_no": 1,
    "previous_page_api_url": null,
    "previous_page_no": null
}
Key Description Example
job
List of JobListEntry
See JobListEntry object
next_page_no
1
next_page_api_url
"https://nubela.co/proxycurl/api/v2/linkedin/company/job?pagination=eyJwYWdlIjogMX0\u0026search_id=1035"
previous_page_no
null
previous_page_api_url
null

JobListEntry

Key Description Example
company
The name of the company that posted this job.
"Microsoft"
company_url
The LinkedIn Company Profile URL that posted this job.
"https://www.linkedin.com/company/microsoft"
job_title
Job title of the posted job.
"Product Management: Intern Opportunities for University Students"
job_url
Job Profile URL. You can fetch details about this job using this URL via the Job Profile API Endpoint.
"https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203330682"
list_date
The date that this job was listed.
"2022-10-09"
location
The job location.
"New York, NY"

Response Headers

Header Key Description Example
X-Proxycurl-Credit-Cost Total cost of credits for this API call 2

Job Profile Endpoint

GET /proxycurl/api/linkedin/job

Cost: 2 credits / successful request.

Get structured data of a LinkedIn Job Profile

curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/linkedin/job' \
    --data-urlencode 'url=https://www.linkedin.com/jobs/view/3046202003/'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/linkedin/job'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'url': 'https://www.linkedin.com/jobs/view/3046202003/',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
url yes
URL of the LinkedIn Job Profile to target.

URL should be in the format of
https://www.linkedin.com/jobs/view/<job_id>.
Jobs Listing Endpoint
can be used to retrieve a job URL.
https://www.linkedin.com/jobs/view/3046202003/

Response

{
    "apply_url": "https://sg.linkedin.com/jobs/view/externalApply/3257696537?url=https%3A%2F%2Fcareers%2Emicrosoft%2Ecom%2Fus%2Fen%2Fjob%2F1451110%2FContent-Strategist%3Fjobsource%3Dlinkedin%26utm_source%3Dlinkedin%26utm_medium%3Dlinkedin%26utm_campaign%3Dlinkedin-feed\u0026urlHash=I9BQ\u0026trk=public_jobs_apply-link-offsite",
    "company": {
        "logo": "https://media.licdn.com/dms/image/C560BAQE88xCsONDULQ/company-logo_100_100/0/1618231291419?e=2147483647\u0026v=beta\u0026t=rffql7GLHsSqWXKbdP2LJMMv7CMTqu7-Ms9d9tophKI",
        "name": "Microsoft",
        "url": "https://www.linkedin.com/company/microsoft"
    },
    "employment_type": "Full-time",
    "industry": [
        "IT Services and IT Consulting, Computer Hardware Manufacturing, and Software Development"
    ],
    "job_description": "The Global Demand Center (GDC) within the Cloud Marketing group is leading the marketing transformation of Microsoft\u2019s largest and fastest growing commercial businesses. Our always-on integrated marketing programs work to nurture and acquire new customers across segments, targeting business and technical audiences across our commercial cloud portfolio, with programs available in 42 markets and 30 languages. The GDC team is modernizing and integrating these channels through advanced analytics, marketing automation, and digital marketing. We are on a mission to drive market share, consumption, and consistent double-digit+ revenue growth. Content is the fuel that drives the digitally connected customer journeys at the core of the GDC engine, and we\u2019re looking for a skilled, self-motivated, data-driven content strategist to build the content that motivates customers to take action. The Content Strategist will develop and execute content strategies for the ever-critical security space. You will be accountable for understanding the business priorities, getting close to our target audiences, defining the content journeys that attract, nurture, inspire, and retain customers, and manage quality execution and delivery of the content. You will work closely with your counterparts, the integrated marketing strategists, to drive business outcomes. Your network will include product marketers, integrated marketers, relationship marketers, sales, engineering, and agency partners to develop and execute on your plan. Our team: The Lifecycle Programs team is a fast-paced digital marketing organization. We put a focus on getting things done, simplifying anything and everything, and having fun while doing it. We all believe in connecting with customers at scale, supporting them at each stage of the customer journey, from early awareness and consideration, through onboarding and post purchase engagement. You will be in the middle of it all helping to identify the right content that delivers what customers want\u2014where they want it, when they want it, and how they want it.   \n  \n**_Responsibilities  \n_**\n  * Define content journeys for Security and IT professionals across industries.\n  * Build the resulting content strategies designed to accelerate the customer through the lifecycle.\n  * Create a content plan to address the insights in the customer journey and strategy, ensuring the content is aligned to what the customer needs at each stage.\n  * Deliver the content through our internal Studio or with select agency partners.\n  * Be a customer advocate. Relentlessly champion the customer and the experiences they have with the content you create\u2014how they find it, how they consume it, how they use it to make decisions.\n  * Leverage data and market insights for decision making including content optimization and new concept development.  \n\n\n**_Qualifications  \n  \n_** **Required/Minimum Qualifications  \n**\n  * Bachelor\u0027s Degree in Business, Marketing, Communications, Economics, Public Relations, or related field AND 1+ year(s) integrated marketing (e.g., digital, relationship, social media, campaign), event management, marketing strategy, business planning, marketing operations, or related work experience\n  * OR equivalent experience.  \n\n\n**_Additional Or Preferred Qualifications  \n_**\n  * Bachelor\u0027s Degree in Business, Marketing, Communications, Economics, Public Relations, or related field AND 3+ years integrated marketing (e.g., digital, relationship, social media, campaign), event management, marketing strategy, business planning, marketing operations, or related work experience\n  * OR equivalent experience.\n  * Strong customer centric mindset and demonstrated ability to put the customer first.\n  * Clear and persuasive communication skills, both written and verbal.\n  * Experience with program performance tracking and communications.\n  * Recognized as a self-starter with a bias for action.\n  * Creative problem-solving skills, and a growth mindset approach\n  * Experience managing across highly matrixed organizations, often with competing priorities.\n  * A demonstrated track record of business impact through content\n  * Well-versed in digital marketing best practices, including journey mapping.\n  * Understanding of content disciplines, including SEO, content strategy, and execution.\n  * Preferred, but not required: experience with commercial technology sales process  \n\n\nNarrative   \n  \nIntegrated Marketing IC3 - The typical base pay range for this role across the U.S. is USD $80,900 - $162,200 per year. There is a different range applicable to specific work locations, within the San Francisco Bay area and New York City metropolitan area, and the base pay range for this role in those locations is USD $105,300 - $176,900 per year.   \n  \nMicrosoft has different base pay ranges for different work locations within the United States, which allows us to pay employees competitively and consistently in different geographic markets (see below). The range above reflects the potential base pay across the U.S. for this role (except as noted below); the applicable base pay range will depend on what ultimately is determined to be the candidate\u2019s primary work location. Individual base pay depends on various factors, in addition to primary work location, such as complexity and responsibility of role, job duties/requirements, and relevant experience and skills. Base pay ranges are reviewed and typically updated each year. Offers are made within the base pay range applicable at the time.   \n  \nAt Microsoft certain roles are eligible for additional rewards, including merit increases, annual bonus and stock. These awards are allocated based on individual performance. In addition, certain roles also have the opportunity to earn sales incentives based on revenue or utilization, depending on the terms of the plan and the employee\u2019s role. Benefits/perks listed here may vary depending on the nature of employment with Microsoft and the country work location. U.S.-based employees have access to healthcare benefits, a 401(k) plan and company match, short-term and long-term disability coverage, basic life insurance, wellbeing benefits, paid vacation time, paid sick and mental health time, and several paid holidays, among others.   \n  \nOur commitment to pay equity   \n  \nWe are committed to the principle of pay equity \u2013 paying employees equitably for substantially similar work. To learn more about pay equity and our other commitments to increase representation and strengthen our culture of inclusion, check out our annual Diversity \u0026 Inclusion Report. ( https://www.microsoft.com/en-us/diversity/inside-microsoft/annual-report )   \n  \nUnderstanding roles at Microsoft   \n  \nThe top of this page displays the role for which the base pay ranges apply \u2013 Integrated Marketing IC3. The way we define roles includes two things: discipline (the type of work) and career stage (scope and complexity). The career stage has two parts \u2013 the first identifies whether the role is a manager (M), an individual contributor (IC), an admin-technician-retail (ATR) job, or an intern. The second part identifies the relative seniority of the role \u2013 a higher number (or later letter alphabetically in the case of ATR) indicates greater scope and complexity.   \n  \nMicrosoft is an equal opportunity employer. All qualified applicants will receive consideration for employment without regard to age, ancestry, color, family or medical care leave, gender identity or expression, genetic information, marital status, medical condition, national origin, physical or mental disability, political affiliation, protected veteran status, race, religion, sex (including pregnancy), sexual orientation, or any other characteristic protected by applicable laws, regulations and ordinances. We also consider qualified applicants regardless of criminal histories, consistent with legal requirements. If you need assistance and/or a reasonable accommodation due to a disability during the application or the recruiting process, please send a request via the Accommodation request form.   \n  \nThe salary for this role in the state of Colorado is between $108,200 and $162,200.   \n  \nAt Microsoft, certain roles are eligible for additional rewards, including annual bonus and stock. These awards are allocated based on individual performance. In addition, certain roles also have the opportunity to earn sales incentives based on revenue or utilization, depending on the terms of the plan and the employee\u2019s role. Benefits/perks listed below may vary depending on the nature of your employment with Microsoft and the country where you work. \n",
    "job_functions": [
        "Marketing"
    ],
    "linkedin_internal_id": "content-strategist-at-microsoft-3257696537",
    "location": {
        "city": null,
        "country": "United States",
        "latitude": null,
        "longitude": null,
        "postal_code": null,
        "region": "Hawaii",
        "street": null
    },
    "seniority_level": "Mid-Senior level",
    "title": "Content Strategist",
    "total_applicants": 200
}
Key Description Example
linkedin_internal_id
The internal ID representation of this job that LinkedIn has for this job.
"content-strategist-at-microsoft-3257696537"
job_description
Description of the posted job.
"The Global Demand Center (GDC) within the Cloud Marketing group is leading the marketing transformation of Microsoft\u2019s largest and fastest growing commercial businesses. Our always-on integrated marketing programs work to nurture and acquire new customers across segments, targeting business and technical audiences across our commercial cloud portfolio, with programs available in 42 markets and 30 languages. The GDC team is modernizing and integrating these channels through advanced analytics, marketing automation, and digital marketing. We are on a mission to drive market share, consumption, and consistent double-digit+ revenue growth. Content is the fuel that drives the digitally connected customer journeys at the core of the GDC engine, and we\u2019re looking for a skilled, self-motivated, data-driven content strategist to build the content that motivates customers to take action. The Content Strategist will develop and execute content strategies for the ever-critical security space. You will be accountable for understanding the business priorities, getting close to our target audiences, defining the content journeys that attract, nurture, inspire, and retain customers, and manage quality execution and delivery of the content. You will work closely with your counterparts, the integrated marketing strategists, to drive business outcomes. Your network will include product marketers, integrated marketers, relationship marketers, sales, engineering, and agency partners to develop and execute on your plan. Our team: The Lifecycle Programs team is a fast-paced digital marketing organization. We put a focus on getting things done, simplifying anything and everything, and having fun while doing it. We all believe in connecting with customers at scale, supporting them at each stage of the customer journey, from early awareness and consideration, through onboarding and post purchase engagement. You will be in the middle of it all helping to identify the right content that delivers what customers want\u2014where they want it, when they want it, and how they want it. \n \n**_Responsibilities \n_**\n * Define content journeys for Security and IT professionals across industries.\n * Build the resulting content strategies designed to accelerate the customer through the lifecycle.\n * Create a content plan to address the insights in the customer journey and strategy, ensuring the content is aligned to what the customer needs at each stage.\n * Deliver the content through our internal Studio or with select agency partners.\n * Be a customer advocate. Relentlessly champion the customer and the experiences they have with the content you create\u2014how they find it, how they consume it, how they use it to make decisions.\n * Leverage data and market insights for decision making including content optimization and new concept development. \n\n\n**_Qualifications \n \n_** **Required/Minimum Qualifications \n**\n * Bachelor\u0027s Degree in Business, Marketing, Communications, Economics, Public Relations, or related field AND 1+ year(s) integrated marketing (e.g., digital, relationship, social media, campaign), event management, marketing strategy, business planning, marketing operations, or related work experience\n * OR equivalent experience. \n\n\n**_Additional Or Preferred Qualifications \n_**\n * Bachelor\u0027s Degree in Business, Marketing, Communications, Economics, Public Relations, or related field AND 3+ years integrated marketing (e.g., digital, relationship, social media, campaign), event management, marketing strategy, business planning, marketing operations, or related work experience\n * OR equivalent experience.\n * Strong customer centric mindset and demonstrated ability to put the customer first.\n * Clear and persuasive communication skills, both written and verbal.\n * Experience with program performance tracking and communications.\n * Recognized as a self-starter with a bias for action.\n * Creative problem-solving skills, and a growth mindset approach\n * Experience managing across highly matrixed organizations, often with competing priorities.\n * A demonstrated track record of business impact through content\n * Well-versed in digital marketing best practices, including journey mapping.\n * Understanding of content disciplines, including SEO, content strategy, and execution.\n * Preferred, but not required: experience with commercial technology sales process \n\n\nNarrative \n \nIntegrated Marketing IC3 - The typical base pay range for this role across the U.S. is USD $80,900 - $162,200 per year. There is a different range applicable to specific work locations, within the San Francisco Bay area and New York City metropolitan area, and the base pay range for this role in those locations is USD $105,300 - $176,900 per year. \n \nMicrosoft has different base pay ranges for different work locations within the United States, which allows us to pay employees competitively and consistently in different geographic markets (see below). The range above reflects the potential base pay across the U.S. for this role (except as noted below); the applicable base pay range will depend on what ultimately is determined to be the candidate\u2019s primary work location. Individual base pay depends on various factors, in addition to primary work location, such as complexity and responsibility of role, job duties/requirements, and relevant experience and skills. Base pay ranges are reviewed and typically updated each year. Offers are made within the base pay range applicable at the time. \n \nAt Microsoft certain roles are eligible for additional rewards, including merit increases, annual bonus and stock. These awards are allocated based on individual performance. In addition, certain roles also have the opportunity to earn sales incentives based on revenue or utilization, depending on the terms of the plan and the employee\u2019s role. Benefits/perks listed here may vary depending on the nature of employment with Microsoft and the country work location. U.S.-based employees have access to healthcare benefits, a 401(k) plan and company match, short-term and long-term disability coverage, basic life insurance, wellbeing benefits, paid vacation time, paid sick and mental health time, and several paid holidays, among others. \n \nOur commitment to pay equity \n \nWe are committed to the principle of pay equity \u2013 paying employees equitably for substantially similar work. To learn more about pay equity and our other commitments to increase representation and strengthen our culture of inclusion, check out our annual Diversity \u0026 Inclusion Report. ( https://www.microsoft.com/en-us/diversity/inside-microsoft/annual-report ) \n \nUnderstanding roles at Microsoft \n \nThe top of this page displays the role for which the base pay ranges apply \u2013 Integrated Marketing IC3. The way we define roles includes two things: discipline (the type of work) and career stage (scope and complexity). The career stage has two parts \u2013 the first identifies whether the role is a manager (M), an individual contributor (IC), an admin-technician-retail (ATR) job, or an intern. The second part identifies the relative seniority of the role \u2013 a higher number (or later letter alphabetically in the case of ATR) indicates greater scope and complexity. \n \nMicrosoft is an equal opportunity employer. All qualified applicants will receive consideration for employment without regard to age, ancestry, color, family or medical care leave, gender identity or expression, genetic information, marital status, medical condition, national origin, physical or mental disability, political affiliation, protected veteran status, race, religion, sex (including pregnancy), sexual orientation, or any other characteristic protected by applicable laws, regulations and ordinances. We also consider qualified applicants regardless of criminal histories, consistent with legal requirements. If you need assistance and/or a reasonable accommodation due to a disability during the application or the recruiting process, please send a request via the Accommodation request form. \n \nThe salary for this role in the state of Colorado is between $108,200 and $162,200. \n \nAt Microsoft, certain roles are eligible for additional rewards, including annual bonus and stock. These awards are allocated based on individual performance. In addition, certain roles also have the opportunity to earn sales incentives based on revenue or utilization, depending on the terms of the plan and the employee\u2019s role. Benefits/perks listed below may vary depending on the nature of your employment with Microsoft and the country where you work. \n"
apply_url
The URL to apply for this job.
"https://sg.linkedin.com/jobs/view/externalApply/3257696537?url=https%3A%2F%2Fcareers%2Emicrosoft%2Ecom%2Fus%2Fen%2Fjob%2F1451110%2FContent-Strategist%3Fjobsource%3Dlinkedin%26utm_source%3Dlinkedin%26utm_medium%3Dlinkedin%26utm_campaign%3Dlinkedin-feed\u0026urlHash=I9BQ\u0026trk=public_jobs_apply-link-offsite"
title
Title of the posted job.
"Content Strategist"
location
A JobLocation object
See JobLocation object
company
A JobCompany object
See JobCompany object
seniority_level
The seniority level for this role.
"Mid-Senior level"
industry
A list of industries that the company which posted this job lies in.
["IT Services and IT Consulting, Computer Hardware Manufacturing, and Software Development"]
employment_type
Type of employment.
"Full-time"
job_functions
A list of job functions that this role is expected to cover.
["Marketing"]
total_applicants
Total applicants for this job so far.
200

JobLocation

Key Description Example
country
Full country name.
"United States"
region
Region.
"Hawaii"
city
The city for the job.
null
postal_code
Postal code of the business location for the job.
null
latitude
Latitude coordinates of the business location for the job.
null
longitude
Longitude coordinates of the business location for the job.
null
street
Street address of the business location for the job.
null

JobCompany

Key Description Example
name
The name of the company.
"Microsoft"
url
The LinkedIn Company Profile URL of the job posting company.
"https://www.linkedin.com/company/microsoft"
logo
The URL to the logo of this company.
"https://media.licdn.com/dms/image/C560BAQE88xCsONDULQ/company-logo_100_100/0/1618231291419?e=2147483647\u0026v=beta\u0026t=rffql7GLHsSqWXKbdP2LJMMv7CMTqu7-Ms9d9tophKI"

Response Headers

Header Key Description Example
X-Proxycurl-Credit-Cost Total cost of credits for this API call 2

Company API

Employee Count Endpoint

GET /proxycurl/api/linkedin/company/employees/count

Cost: 1 credit / successful request. (Extra charges might be incurred if premium optional parameters are used. Please read the description of the parameters that you intend to use)

Get a number of total employees of a Company.

Get an employee count of this company from various sources.

curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/linkedin/company/employees/count' \
    --data-urlencode 'url=https://www.linkedin.com/company/apple/' \
    --data-urlencode 'use_cache=if-present' \
    --data-urlencode 'linkedin_employee_count=include' \
    --data-urlencode 'employment_status=current'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/linkedin/company/employees/count'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'url': 'https://www.linkedin.com/company/apple/',
    'use_cache': 'if-present',
    'linkedin_employee_count': 'include',
    'employment_status': 'current',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
url yes
URL of the LinkedIn Company Profile to target.

URL should be in the format of https://www.linkedin.com/company/<public_identifier>
https://www.linkedin.com/company/apple/
use_cache no
if-present: The default behavior. Fetches data from LinkDB cache regardless of age of profile.

if-recent: API will make a best effort to return a fresh data no older than 29 days. Costs an extra 1 credit on top of the cost of the base endpoint.
if-present
linkedin_employee_count no
Option to include a scraped employee count value from the target company's LinkedIn profile.

Valid values are include and exclude:

* exclude (default) : To exclude the scraped employee count.
* include : To include the scraped employee count.

Costs an extra 1 credit on top of the base cost of the endpoint.
include
employment_status no
Parameter to tell the API to filter past or current employees.

Valid values are current, past, and all:

* current (default) : count current employees
* past : count past employees
* all : count current & past employees
current

Response

{
    "linkdb_employee_count": 3,
    "linkedin_employee_count": 529274
}
Key Description Example
linkedin_employee_count
The scraped value of employee count of this company from it's LinkedIn profile. This value does not respect employement_status parameter. It will always return the curent employee count of this company from LinkedIn.
99
linkdb_employee_count
The total number of employees found in LinkDB for this company. This value is limited by pre-crawled LinkedIn profiles stored in LinkDB
3

Response Headers

Header Key Description Example
X-Proxycurl-Credit-Cost Total cost of credits for this API call 1

Employee Search Endpoint

GET /proxycurl/api/linkedin/company/employee/search/

Cost: 10 credits / successful request. + 6 credits / employee returned (Extra charges might be incurred if premium optional parameters are used. Please read the description of the parameters that you intend to use)

Search employees of a target by their job title. This API endpoint is syntactic sugar for the role_search parameter under the Employee Listing Endpoint.

Results are limited by data that we have within LinkDB. Use Role Lookup API Endpoint if you need to query for profiles without LinkDB constraints. The drawbacks of the Role Lookup API Endpoint is that it is less precise and can return at most one result per query.

curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/linkedin/company/employee/search/' \
    --data-urlencode 'linkedin_company_profile_url=https://www.linkedin.com/company/microsoft/' \
    --data-urlencode 'keyword_regex=ceo|cto' \
    --data-urlencode 'page_size=100' \
    --data-urlencode 'country=us' \
    --data-urlencode 'enrich_profiles=enrich' \
    --data-urlencode 'resolve_numeric_id=false'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/linkedin/company/employee/search/'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'linkedin_company_profile_url': 'https://www.linkedin.com/company/microsoft/',
    'keyword_regex': 'ceo|cto',
    'page_size': '100',
    'country': 'us',
    'enrich_profiles': 'enrich',
    'resolve_numeric_id': 'false',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
linkedin_company_profile_url yes
LinkedIn Profile URL of the target company.
https://www.linkedin.com/company/microsoft/
keyword_regex yes
Job title keyword to search for in regular expression format.

The accepted value for this parameter is a case-insensitive regular expression.
ceo|cto
page_size no
Tune the maximum results returned per API call.
The default value of this parameter is 200000.
Accepted values for this parameter is an integer ranging from 1 to 200000.
When enrich_profiles=enrich, this parameter accepts value ranging from 1 to 100 and the default value is 100.
100
country no
Limit the result set to the country locality of the profile. For example, set the parameter of country=us if you only want profiles from the US.

This parameter accepts a case-insensitive Alpha-2 ISO3166 country code.

Costs an extra 3 credit per result returned.
us
enrich_profiles no
Get the full profile of employees instead of only their profile urls.

Each request respond with a streaming response of profiles.

The valid values are:

* skip (default): lists employee's profile url
* enrich: lists full profile of employees

Calling this API endpoint with this parameter would add 1 credit per employee returned.
enrich
resolve_numeric_id no
Enable support for Company Profile URLs with numerical IDs that you most frequently fetch from Sales Navigator.
We achieve this by resolving numerical IDs into vanity IDs with cached company profiles from LinkDB.
For example, we will turn https://www.linkedin.com/company/1234567890 to https://www.linkedin.com/company/acme-corp -- for which the API endpoint only supports the latter.

This parameter accepts the following values:
- false (default value) - Will not resolve numerical IDs.
- true - Enable support for Company Profile URLs with numerical IDs.
Costs an extra 2 credit on top of the base cost of the endpoint.
false

Response

{
    "employees": [
        {
            "profile": null,
            "profile_url": "https://www.linkedin.com/in/satyanadella"
        }
    ],
    "next_page": null
}
Key Description Example
employees
List of Employee
See Employee object
next_page
"https://nubela.co/proxycurl/api/linkedin/company/employees/?page_size=100\u0026employment_status=all\u0026resolve_numeric_id=true\u0026url=https%3A%2F%2Fwww.linkedin.com%2Fcompany%2F1035\u0026role_search=%5BFf%5D%5BOo%5D%5BUu%5D%5BNn%5D%5BDd%5D%5BEe%5D%5BRr%5D\u0026after=williamhgates"

Employee

Key Description Example
profile_url
LinkedIn Profile URL of the employee.
"https://www.linkedin.com/in/satyanadella"
profile
Enriched profile data of the employee.
null

Response Headers

Header Key Description Example
X-Proxycurl-Credit-Cost Total cost of credits for this API call 10

Company Profile Picture Endpoint

GET /proxycurl/api/linkedin/company/profile-picture

Cost: 0 credit / successful request.

Get the profile picture of a company.

Profile pictures are served from cached company profiles found within LinkDB. If the profile does not exist within LinkDB, then the API will return a 404 status code.

curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/linkedin/company/profile-picture' \
    --data-urlencode 'linkedin_company_profile_url=https://www.linkedin.com/company/apple/'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/linkedin/company/profile-picture'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'linkedin_company_profile_url': 'https://www.linkedin.com/company/apple/',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
linkedin_company_profile_url yes
LinkedIn Profile URL of the company that you are trying to get the profile picture of.
https://www.linkedin.com/company/apple/

Response

{
    "tmp_profile_pic_url": "http://localhost:4566/proxycurl-web-dev/company/apple/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=%2F20220912%2F%2Fs3%2Faws4_request\u0026X-Amz-Date=20220912T065816Z\u0026X-Amz-Expires=1800\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=40e484b7b1a9c4fd712d99b658d68efb115d8b20be227c8d5c49fc62dfd4d480"
}
Key Description Example
tmp_profile_pic_url
Temporary URL to the profile picture (valid for just 30 minutes).
See this blog post for more information.
"http://localhost:4566/proxycurl-web-dev/company/apple/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=%2F20220912%2F%2Fs3%2Faws4_request\u0026X-Amz-Date=20220912T065816Z\u0026X-Amz-Expires=1800\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=40e484b7b1a9c4fd712d99b658d68efb115d8b20be227c8d5c49fc62dfd4d480"

Response Headers

Header Key Description Example
X-Proxycurl-Credit-Cost Total cost of credits for this API call 0

Employee Listing Endpoint

GET /proxycurl/api/linkedin/company/employees/

Cost: 3 credits / employee returned. (Extra charges might be incurred if premium optional parameters are used. Please read the description of the parameters that you intend to use)

Get a list of employees of a Company.

This API endpoint is limited by LinkDB which is populated with profiles in the US, UK, Canada, Israel, Australia, Ireland, New Zealand and Singapore. As such, this endpoint is best used to list employees working in companies based in those locations only.

curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/linkedin/company/employees/' \
    --data-urlencode 'url=https://www.linkedin.com/company/microsoft' \
    --data-urlencode 'country=us' \
    --data-urlencode 'enrich_profiles=enrich' \
    --data-urlencode 'role_search=(co)?-?founder' \
    --data-urlencode 'page_size=100' \
    --data-urlencode 'employment_status=current' \
    --data-urlencode 'sort_by=recently-joined' \
    --data-urlencode 'resolve_numeric_id=false'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/linkedin/company/employees/'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'url': 'https://www.linkedin.com/company/microsoft',
    'country': 'us',
    'enrich_profiles': 'enrich',
    'role_search': '(co)?-?founder',
    'page_size': '100',
    'employment_status': 'current',
    'sort_by': 'recently-joined',
    'resolve_numeric_id': 'false',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
url yes
URL of the LinkedIn Company Profile to target.

URL should be in the format of https://www.linkedin.com/company/<public_identifier>
https://www.linkedin.com/company/microsoft
country no
Limit the result set to the country locality of the profile. For example, set the parameter of country=us if you only want profiles from the US.

This parameter accepts a case-insensitive Alpha-2 ISO3166 country code.

Costs an extra 3 credit per result returned.
us
enrich_profiles no
Get the full profile of employees instead of only their profile urls.

Each request respond with a streaming response of profiles.

The valid values are:

* skip (default): lists employee's profile url
* enrich: lists full profile of employees

Calling this API endpoint with this parameter would add 1 credit per employee returned.
enrich
role_search no
Filter employees by their title by matching the employee's title against a regular expression.

The default value of this parameter is null.

The accepted value for this parameter is a case-insensitive regular expression.

(The base cost of calling this API endpoint with this parameter would be 10 credits.
Each employee matched and returned would cost 6 credits per employee returned.)
(co)?-?founder
page_size no
Tune the maximum results returned per API call.

The default value of this parameter is 200000.

Accepted values for this parameter is an integer ranging from 1 to 200000.

When enrich_profiles=enrich, this parameter accepts value ranging from 1 to 100.
100
employment_status no
Parameter to tell the API to return past or current employees.

Valid values are current, past, and all:

* current (default) : lists current employees
* past : lists past employees
* all : lists current & past employees
current
sort_by no
Sort employees by recency.

Valid values are:
* recently-joined - Sort employees by their join date. The most recent employee is on the top of the list.
* recently-left - Sort employees by their departure date. The most recent employee who had just left is on the top of this list.
* none - The default value. Do not sort.

If this parameter is supplied with a value other than none, will add 50 credits to the base cost of the API endpoint regardless number of results returned. It will also add an additional cost of 10 credits per employee returned.
recently-joined
resolve_numeric_id no
Enable support for Company Profile URLs with numerical IDs that you most frequently fetch from Sales Navigator.
We achieve this by resolving numerical IDs into vanity IDs with cached company profiles from LinkDB.
For example, we will turn https://www.linkedin.com/company/1234567890 to https://www.linkedin.com/company/acme-corp -- for which the API endpoint only supports the latter.

This parameter accepts the following values:
- false (default value) - Will not resolve numerical IDs.
- true - Enable support for Company Profile URLs with numerical IDs.
Costs an extra 2 credit on top of the base cost of the endpoint.
false

Response

{
    "employees": [
        {
            "profile": {
                "accomplishment_courses": [],
                "accomplishment_honors_awards": [],
                "accomplishment_organisations": [],
                "accomplishment_patents": [],
                "accomplishment_projects": [],
                "accomplishment_publications": [],
                "accomplishment_test_scores": [],
                "activities": [],
                "articles": [],
                "background_cover_image_url": null,
                "certifications": [],
                "city": "Seattle",
                "connections": null,
                "country": "US",
                "country_full_name": "United States of America",
                "education": [
                    {
                        "degree_name": null,
                        "description": null,
                        "ends_at": {
                            "day": 31,
                            "month": 12,
                            "year": 1975
                        },
                        "field_of_study": null,
                        "logo_url": "https://media-exp1.licdn.com/dms/image/C4E0BAQF5t62bcL0e9g/company-logo_400_400/0/1519855919126?e=1672876800\u0026v=beta\u0026t=9twXof1JlnNHfFprrDMi-C1Kp55HTT4ahINKHRflUHw",
                        "school": "Harvard University",
                        "school_linkedin_profile_url": null,
                        "starts_at": {
                            "day": 1,
                            "month": 1,
                            "year": 1973
                        }
                    },
                    {
                        "degree_name": null,
                        "description": null,
                        "ends_at": null,
                        "field_of_study": null,
                        "logo_url": "https://media-exp1.licdn.com/dms/image/C4D0BAQENlfOPKBEk3Q/company-logo_400_400/0/1519856497259?e=1672876800\u0026v=beta\u0026t=v7nJTPaJMfH7WOBjb22dyvNKxAgdPdVd8uLCUkMB1LQ",
                        "school": "Lakeside School",
                        "school_linkedin_profile_url": null,
                        "starts_at": null
                    }
                ],
                "experiences": [
                    {
                        "company": "Breakthrough Energy ",
                        "company_linkedin_profile_url": "https://www.linkedin.com/company/breakthrough-energy/",
                        "description": null,
                        "ends_at": null,
                        "location": null,
                        "logo_url": "https://media-exp1.licdn.com/dms/image/C4D0BAQGwD9vNu044FA/company-logo_400_400/0/1601560874941?e=1672876800\u0026v=beta\u0026t=VKb6OAHEwlnazKYKm4fc9go-y4zkUv2BT6tosOdQ54Y",
                        "starts_at": {
                            "day": 1,
                            "month": 1,
                            "year": 2015
                        },
                        "title": "Founder"
                    },
                    {
                        "company": "Bill \u0026 Melinda Gates Foundation",
                        "company_linkedin_profile_url": "https://www.linkedin.com/company/bill-\u0026-melinda-gates-foundation/",
                        "description": null,
                        "ends_at": null,
                        "location": null,
                        "logo_url": "https://media-exp1.licdn.com/dms/image/C4E0BAQE7Na_mKQhIJg/company-logo_400_400/0/1633731810932?e=1672876800\u0026v=beta\u0026t=Mz_ntwD4meCMcgo1L3JqDxBQRabFLIesd0Yz2ciAXNs",
                        "starts_at": {
                            "day": 1,
                            "month": 1,
                            "year": 2000
                        },
                        "title": "Co-chair"
                    },
                    {
                        "company": "Microsoft",
                        "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft/",
                        "description": null,
                        "ends_at": null,
                        "location": null,
                        "logo_url": "https://media-exp1.licdn.com/dms/image/C560BAQE88xCsONDULQ/company-logo_400_400/0/1618231291419?e=1672876800\u0026v=beta\u0026t=I1mJMWAR_W2R_0h-lyL9Ln1ewby1Gg7ExCbpzhMJr5g",
                        "starts_at": {
                            "day": 1,
                            "month": 1,
                            "year": 1975
                        },
                        "title": "Co-founder"
                    }
                ],
                "first_name": "Bill",
                "full_name": "Bill Gates",
                "groups": [],
                "headline": "Co-chair, Bill \u0026 Melinda Gates Foundation",
                "languages": [],
                "last_name": "Gates",
                "occupation": "Co-chair at Bill \u0026 Melinda Gates Foundation",
                "people_also_viewed": [],
                "profile_pic_url": "http://localhost:4566/proxycurl-web-dev/person/williamhgates/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=%2F20221003%2F%2Fs3%2Faws4_request\u0026X-Amz-Date=20221003T091809Z\u0026X-Amz-Expires=3600\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=653f499173f225e30141b4f7ff86e45b16a4fdb6cc91fec10f395fb27427ad26",
                "public_identifier": "williamhgates",
                "recommendations": [],
                "similarly_named_profiles": [],
                "state": "Washington",
                "summary": "Co-chair of the Bill \u0026 Melinda Gates Foundation. Founder of Breakthrough Energy. Co-founder of Microsoft. Voracious reader. Avid traveler. Active blogger.",
                "volunteer_work": []
            },
            "profile_url": "https://www.linkedin.com/in/williamhgates"
        }
    ],
    "next_page": null
}
Key Description Example
employees
List of Employee
See Employee object
next_page
"https://nubela.co/proxycurl/api/linkedin/company/employees/?page_size=100\u0026employment_status=all\u0026resolve_numeric_id=true\u0026url=https%3A%2F%2Fwww.linkedin.com%2Fcompany%2F1035\u0026role_search=%5BFf%5D%5BOo%5D%5BUu%5D%5BNn%5D%5BDd%5D%5BEe%5D%5BRr%5D\u0026after=williamhgates"

Employee

Key Description Example
profile_url
LinkedIn Profile URL of the employee.
"https://www.linkedin.com/in/williamhgates"
profile
Enriched profile data of the employee.
{"accomplishment_courses": [], "accomplishment_honors_awards": [], "accomplishment_organisations": [], "accomplishment_patents": [], "accomplishment_projects": [], "accomplishment_publications": [], "accomplishment_test_scores": [], "activities": [], "articles": [], "background_cover_image_url": null, "certifications": [], "city": "Seattle", "connections": null, "country": "US", "country_full_name": "United States of America", "education": [{"degree_name": null, "description": null, "ends_at": {"day": 31, "month": 12, "year": 1975}, "field_of_study": null, "logo_url": "https://media-exp1.licdn.com/dms/image/C4E0BAQF5t62bcL0e9g/company-logo_400_400/0/1519855919126?e=1672876800\u0026v=beta\u0026t=9twXof1JlnNHfFprrDMi-C1Kp55HTT4ahINKHRflUHw", "school": "Harvard University", "school_linkedin_profile_url": null, "starts_at": {"day": 1, "month": 1, "year": 1973}}, {"degree_name": null, "description": null, "ends_at": null, "field_of_study": null, "logo_url": "https://media-exp1.licdn.com/dms/image/C4D0BAQENlfOPKBEk3Q/company-logo_400_400/0/1519856497259?e=1672876800\u0026v=beta\u0026t=v7nJTPaJMfH7WOBjb22dyvNKxAgdPdVd8uLCUkMB1LQ", "school": "Lakeside School", "school_linkedin_profile_url": null, "starts_at": null}], "experiences": [{"company": "Breakthrough Energy ", "company_linkedin_profile_url": "https://www.linkedin.com/company/breakthrough-energy/", "description": null, "ends_at": null, "location": null, "logo_url": "https://media-exp1.licdn.com/dms/image/C4D0BAQGwD9vNu044FA/company-logo_400_400/0/1601560874941?e=1672876800\u0026v=beta\u0026t=VKb6OAHEwlnazKYKm4fc9go-y4zkUv2BT6tosOdQ54Y", "starts_at": {"day": 1, "month": 1, "year": 2015}, "title": "Founder"}, {"company": "Bill \u0026 Melinda Gates Foundation", "company_linkedin_profile_url": "https://www.linkedin.com/company/bill-\u0026-melinda-gates-foundation/", "description": null, "ends_at": null, "location": null, "logo_url": "https://media-exp1.licdn.com/dms/image/C4E0BAQE7Na_mKQhIJg/company-logo_400_400/0/1633731810932?e=1672876800\u0026v=beta\u0026t=Mz_ntwD4meCMcgo1L3JqDxBQRabFLIesd0Yz2ciAXNs", "starts_at": {"day": 1, "month": 1, "year": 2000}, "title": "Co-chair"}, {"company": "Microsoft", "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft/", "description": null, "ends_at": null, "location": null, "logo_url": "https://media-exp1.licdn.com/dms/image/C560BAQE88xCsONDULQ/company-logo_400_400/0/1618231291419?e=1672876800\u0026v=beta\u0026t=I1mJMWAR_W2R_0h-lyL9Ln1ewby1Gg7ExCbpzhMJr5g", "starts_at": {"day": 1, "month": 1, "year": 1975}, "title": "Co-founder"}], "first_name": "Bill", "full_name": "Bill Gates", "groups": [], "headline": "Co-chair, Bill \u0026 Melinda Gates Foundation", "languages": [], "last_name": "Gates", "occupation": "Co-chair at Bill \u0026 Melinda Gates Foundation", "people_also_viewed": [], "profile_pic_url": "http://localhost:4566/proxycurl-web-dev/person/williamhgates/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=%2F20221003%2F%2Fs3%2Faws4_request\u0026X-Amz-Date=20221003T091809Z\u0026X-Amz-Expires=3600\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=653f499173f225e30141b4f7ff86e45b16a4fdb6cc91fec10f395fb27427ad26", "public_identifier": "williamhgates", "recommendations": [], "similarly_named_profiles": [], "state": "Washington", "summary": "Co-chair of the Bill \u0026 Melinda Gates Foundation. Founder of Breakthrough Energy. Co-founder of Microsoft. Voracious reader. Avid traveler. Active blogger.", "volunteer_work": []}

Response Headers

Header Key Description Example
X-Proxycurl-Credit-Cost Total cost of credits for this API call 3

Company Lookup Endpoint

GET /proxycurl/api/linkedin/company/resolve

Cost: 2 credits / successful request.

Resolve Company LinkedIn Profile from company name, domain name and location.

curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/linkedin/company/resolve' \
    --data-urlencode 'company_domain=accenture.com' \
    --data-urlencode 'company_name=Accenture' \
    --data-urlencode 'company_location=sg' \
    --data-urlencode 'enrich_profile=enrich'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/linkedin/company/resolve'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'company_domain': 'accenture.com',
    'company_name': 'Accenture',
    'company_location': 'sg',
    'enrich_profile': 'enrich',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
company_domain Requires either company_domain or company_name
Company website or Company domain
accenture.com
company_name Requires either company_domain or company_name
Company Name
Accenture
company_location no
The location / region of company.
ISO 3166-1 alpha-2 codes
sg
enrich_profile no
Enrich the result with a cached profile of the lookup result.

The valid values are:

* skip (default): do not enrich the results with cached profile data
* enrich: enriches the result with cached profile data

Calling this API endpoint with this parameter would add 1 credit.

If you require fresh profile data,
please chain this API call with the Company Profile Endpoint with the use_cache=if-recent parameter.
enrich

Response

{
    "profile": {
        "affiliated_companies": [
            {
                "industry": "Software Development",
                "link": "https://www.linkedin.com/company/youtube",
                "location": "San Bruno, CA",
                "name": "YouTube"
            },
            {
                "industry": "Software Development",
                "link": "https://www.linkedin.com/showcase/google-cloud",
                "location": "Mountain View, California",
                "name": "Google Cloud"
            },
            {
                "industry": "Advertising Services",
                "link": "https://www.linkedin.com/showcase/think-with-google",
                "location": "Mountain View, California",
                "name": "Think with Google"
            },
            {
                "industry": "Advertising Services",
                "link": "https://www.linkedin.com/showcase/google-ads-",
                "location": "Mountain View, California",
                "name": "Google Ads"
            },
            {
                "industry": "Software Development",
                "link": "https://www.linkedin.com/showcase/googledevelopers",
                "location": "Mountain View, CA",
                "name": "Google Developers"
            },
            {
                "industry": "Software Development",
                "link": "https://www.linkedin.com/showcase/google-analytics",
                "location": "Mountain View, California",
                "name": "Google Analytics"
            },
            {
                "industry": "IT Services and IT Consulting",
                "link": "https://www.linkedin.com/showcase/googleworkspace",
                "location": "Mountain View, California",
                "name": "Google Workspace"
            },
            {
                "industry": "Advertising Services",
                "link": "https://www.linkedin.com/showcase/googlemarketingplatform",
                "location": "Mountain View, California",
                "name": "Google Marketing Platform"
            },
            {
                "industry": "Software Development",
                "link": "https://www.linkedin.com/showcase/google-developer-groups",
                "location": "Mountain View, CA",
                "name": "Google Developer Groups (GDG)"
            },
            {
                "industry": "Advertising Services",
                "link": "https://www.linkedin.com/showcase/google-ad-manager",
                "location": "Mountain View, California",
                "name": "Google Ad Manager"
            },
            {
                "industry": "E-Learning Providers",
                "link": "https://www.linkedin.com/showcase/grow-with-google",
                "location": "Mountain View, California",
                "name": "Grow with Google"
            },
            {
                "industry": "Software Development",
                "link": "https://www.linkedin.com/showcase/google-for-startups",
                "location": "San Francisco, California",
                "name": "Google for Startups"
            },
            {
                "industry": "Research Services",
                "link": "https://www.linkedin.com/company/x",
                "location": "Mountain View, CA",
                "name": "X, the moonshot factory"
            },
            {
                "industry": "Technology, Information and Internet",
                "link": "https://www.linkedin.com/showcase/google-small-business",
                "location": "Mountain View, California",
                "name": "Google Small Business"
            },
            {
                "industry": "Technology, Information and Internet",
                "link": "https://www.linkedin.com/showcase/google-cloud-partners",
                "location": "Mountain View, California",
                "name": "Google Cloud Partners"
            },
            {
                "industry": "Human Resources Services",
                "link": "https://www.linkedin.com/showcase/rework-with-google",
                "location": null,
                "name": "re:Work with Google"
            },
            {
                "industry": "Advertising Services",
                "link": "https://www.linkedin.com/showcase/google-partners",
                "location": null,
                "name": "Google Partners"
            },
            {
                "industry": "IT Services and IT Consulting",
                "link": "https://www.linkedin.com/showcase/chrome-enterprise",
                "location": null,
                "name": "Chrome Enterprise"
            },
            {
                "industry": "Software Development",
                "link": "https://www.linkedin.com/showcase/androiddev",
                "location": "Mountain View, California",
                "name": "Android Developers"
            },
            {
                "industry": "IT Services and IT Consulting",
                "link": "https://www.linkedin.com/showcase/googleplaybiz",
                "location": "Mountain View, CA",
                "name": "Google Play business community"
            },
            {
                "industry": "Online Audio and Video Media",
                "link": "https://www.linkedin.com/showcase/google-news-initiative",
                "location": "Mountain View, CA",
                "name": "Google News Initiative"
            },
            {
                "industry": "Advertising Services",
                "link": "https://www.linkedin.com/showcase/googleadmob",
                "location": null,
                "name": "Google AdMob"
            },
            {
                "industry": "Software Development",
                "link": "https://www.linkedin.com/showcase/google-health",
                "location": null,
                "name": "Google Health"
            },
            {
                "industry": "Technology, Information and Internet",
                "link": "https://www.linkedin.com/showcase/google-pay",
                "location": "Mountain View, California",
                "name": "Google Pay"
            },
            {
                "industry": "Software Development",
                "link": "https://www.linkedin.com/showcase/google-user-research.",
                "location": null,
                "name": "Google User Experience Research"
            },
            {
                "industry": "Venture Capital and Private Equity Principals",
                "link": "https://ca.linkedin.com/company/capitalg",
                "location": "San Francisco, CA",
                "name": "CapitalG"
            },
            {
                "industry": "Software Development",
                "link": "https://www.linkedin.com/showcase/android_by_google",
                "location": null,
                "name": "Android"
            },
            {
                "industry": "IT Services and IT Consulting",
                "link": "https://www.linkedin.com/showcase/androidenterprise",
                "location": "Mountain View, CA",
                "name": "Android Enterprise"
            },
            {
                "industry": "Software Development",
                "link": "https://ng.linkedin.com/showcase/gwgafrica",
                "location": "Lagos, Lagos",
                "name": "Grow with Google Africa"
            },
            {
                "industry": "Software Development",
                "link": "https://www.linkedin.com/showcase/flutterdevofficial",
                "location": "Mountain View, California",
                "name": "Flutter Dev"
            },
            {
                "industry": "Software Development",
                "link": "https://www.linkedin.com/showcase/firebase",
                "location": "Mountain View, CA",
                "name": "Firebase"
            },
            {
                "industry": "Advertising Services",
                "link": "https://www.linkedin.com/company/adometry",
                "location": "Mountain View, CA",
                "name": "Adometry (acquired by Google)"
            },
            {
                "industry": "Software Development",
                "link": "https://www.linkedin.com/showcase/google-nest",
                "location": "Mountain View, California",
                "name": "Google Nest Pro \u0026 Enterprise Partners"
            },
            {
                "industry": "Software Development",
                "link": "https://www.linkedin.com/showcase/tensorflowdev",
                "location": null,
                "name": "TensorFlow"
            },
            {
                "industry": "Software Development",
                "link": "https://www.linkedin.com/showcase/google-developers-north-america",
                "location": "Mountain View, CA",
                "name": "Google Developers North America"
            },
            {
                "industry": "Technology, Information and Internet",
                "link": "https://www.linkedin.com/showcase/google-chrome",
                "location": "Mountain View, CA",
                "name": "Google Chrome"
            },
            {
                "industry": "Advertising Services",
                "link": "https://www.linkedin.com/showcase/rare-with-google",
                "location": null,
                "name": "Rare with Google"
            },
            {
                "industry": null,
                "link": "https://www.linkedin.com/showcase/flutterdev-hold",
                "location": null,
                "name": "Flutter"
            },
            {
                "industry": null,
                "link": "https://www.linkedin.com/showcase/firebase-hold",
                "location": null,
                "name": "Firebase"
            }
        ],
        "background_cover_image_url": "https://s3.us-west-000.backblazeb2.com/proxycurl/company/google/cover?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request\u0026X-Amz-Date=20230119T060024Z\u0026X-Amz-Expires=3600\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=abb7a4b87583cffda8db24d58d906c644998fae8cbb99e98c69a35720fcd0050",
        "company_size": [
            10001,
            null
        ],
        "company_size_on_linkedin": 319856,
        "company_type": "PUBLIC_COMPANY",
        "description": "A problem isn\u0027t truly solved until it\u0027s solved for all. Googlers build products that help create opportunities for everyone, whether down the street or across the globe. Bring your insight, imagination and a healthy disregard for the impossible. Bring everything that makes you unique. Together, we can build for everyone.\n\nCheck out our career opportunities at careers.google.com.",
        "follower_count": 27472792,
        "founded_year": null,
        "hq": {
            "city": "Mountain View",
            "country": "US",
            "is_hq": true,
            "line_1": "1600 Amphitheatre Parkway",
            "postal_code": "94043",
            "state": "CA"
        },
        "industry": "Software Development",
        "linkedin_internal_id": "1441",
        "locations": [
            {
                "city": "Mountain View",
                "country": "US",
                "is_hq": true,
                "line_1": "1600 Amphitheatre Parkway",
                "postal_code": "94043",
                "state": "CA"
            },
            {
                "city": "New York",
                "country": "US",
                "is_hq": false,
                "line_1": "111 8th Ave",
                "postal_code": "10011",
                "state": "NY"
            },
            {
                "city": "Amsterdam",
                "country": "NL",
                "is_hq": false,
                "line_1": "Claude Debussylaan 34",
                "postal_code": "1082 MD",
                "state": "North Holland"
            },
            {
                "city": "Sao Paulo",
                "country": "BR",
                "is_hq": false,
                "line_1": "Avenida Brigadeiro Faria Lima, 3477",
                "postal_code": "04538-133",
                "state": "SP"
            },
            {
                "city": "Kitchener",
                "country": "CA",
                "is_hq": false,
                "line_1": "51 Breithaupt St",
                "postal_code": "N2H 5G5",
                "state": "ON"
            },
            {
                "city": "Dublin",
                "country": "IE",
                "is_hq": false,
                "line_1": "Barrow Street",
                "postal_code": null,
                "state": "County Dublin"
            },
            {
                "city": "Bengaluru",
                "country": "IN",
                "is_hq": false,
                "line_1": "Old Madras Road",
                "postal_code": "560016",
                "state": "Karnataka"
            },
            {
                "city": "Boulder",
                "country": "US",
                "is_hq": false,
                "line_1": "2590 Pearl St",
                "postal_code": "80302",
                "state": "CO"
            },
            {
                "city": "Seattle",
                "country": "US",
                "is_hq": false,
                "line_1": "601 N 34th St",
                "postal_code": "98103",
                "state": "WA"
            },
            {
                "city": "Sydney",
                "country": "AU",
                "is_hq": false,
                "line_1": "48 Pirrama Rd",
                "postal_code": "2009",
                "state": "NSW"
            },
            {
                "city": "Irvine",
                "country": "US",
                "is_hq": false,
                "line_1": "19510 Jamboree Rd",
                "postal_code": "92612",
                "state": "CA"
            },
            {
                "city": "Chicago",
                "country": "US",
                "is_hq": false,
                "line_1": "320 N Morgan St",
                "postal_code": "60607",
                "state": "IL"
            },
            {
                "city": "Mumbai",
                "country": "IN",
                "is_hq": false,
                "line_1": "3 Bandra Kurla Complex Road",
                "postal_code": "400051",
                "state": "Maharashtra"
            },
            {
                "city": "Taguig City",
                "country": "PH",
                "is_hq": false,
                "line_1": "5th Ave",
                "postal_code": null,
                "state": "National Capital Region"
            },
            {
                "city": "Singapore",
                "country": "SG",
                "is_hq": false,
                "line_1": "3 Pasir Panjang Rd",
                "postal_code": "118484",
                "state": "Singapore"
            },
            {
                "city": "Hyderabad",
                "country": "IN",
                "is_hq": false,
                "line_1": "13",
                "postal_code": "500084",
                "state": "TS"
            },
            {
                "city": "Melbourne",
                "country": "AU",
                "is_hq": false,
                "line_1": "90 Collins St",
                "postal_code": "3000",
                "state": "VIC"
            },
            {
                "city": "San Bruno",
                "country": "US",
                "is_hq": false,
                "line_1": "901 Cherry Ave",
                "postal_code": "94066",
                "state": "CA"
            },
            {
                "city": "Madrid",
                "country": "ES",
                "is_hq": false,
                "line_1": "Plaza Pablo Ruiz Picasso",
                "postal_code": "28046",
                "state": "Community of Madrid"
            },
            {
                "city": "Washington",
                "country": "US",
                "is_hq": false,
                "line_1": "25 Massachusetts Ave NW",
                "postal_code": "20001",
                "state": "DC"
            },
            {
                "city": "Gurugram",
                "country": "IN",
                "is_hq": false,
                "line_1": "15",
                "postal_code": "122001",
                "state": "HR"
            },
            {
                "city": "Bogota",
                "country": "CO",
                "is_hq": false,
                "line_1": "Carrera 11A 94-45",
                "postal_code": "110221",
                "state": "Bogota, D.C."
            },
            {
                "city": "Wan Chai",
                "country": "HK",
                "is_hq": false,
                "line_1": "2 Matheson St",
                "postal_code": null,
                "state": "Hong Kong"
            },
            {
                "city": "Reston",
                "country": "US",
                "is_hq": false,
                "line_1": "1875 Explorer St",
                "postal_code": "20190",
                "state": "VA"
            },
            {
                "city": "Toronto",
                "country": "CA",
                "is_hq": false,
                "line_1": "111 Richmond St W",
                "postal_code": "M5H 2G4",
                "state": "ON"
            },
            {
                "city": "San Francisco",
                "country": "US",
                "is_hq": false,
                "line_1": "345 Spear St",
                "postal_code": "94105",
                "state": "CA"
            },
            {
                "city": "Cambridge",
                "country": "US",
                "is_hq": false,
                "line_1": "355 Main St",
                "postal_code": "02142",
                "state": "MA"
            },
            {
                "city": "Milan",
                "country": "IT",
                "is_hq": false,
                "line_1": "Via Federico Confalonieri, 4",
                "postal_code": "20124",
                "state": "Lomb."
            },
            {
                "city": "London",
                "country": "GB",
                "is_hq": false,
                "line_1": "St Giles High Street",
                "postal_code": "WC2H 8AG",
                "state": "England"
            },
            {
                "city": "Austin",
                "country": "US",
                "is_hq": false,
                "line_1": "9606 N Mopac Expy",
                "postal_code": "78759",
                "state": "TX"
            },
            {
                "city": "Los Angeles",
                "country": "US",
                "is_hq": false,
                "line_1": "340 Main St",
                "postal_code": "90291",
                "state": "CA"
            },
            {
                "city": "Madrid",
                "country": "ES",
                "is_hq": false,
                "line_1": "Plaza Pablo Ruiz Picasso",
                "postal_code": "28020",
                "state": "Community of Madrid"
            },
            {
                "city": "Ann Arbor",
                "country": "US",
                "is_hq": false,
                "line_1": "2300 Traverwood Dr",
                "postal_code": "48105",
                "state": "MI"
            },
            {
                "city": "Las Condes",
                "country": "CL",
                "is_hq": false,
                "line_1": "Avenida Costanera Sur",
                "postal_code": "7550000",
                "state": "Santiago Metropolitan"
            },
            {
                "city": "Atlanta",
                "country": "US",
                "is_hq": false,
                "line_1": "10 10th St NE",
                "postal_code": "30309",
                "state": "GA"
            },
            {
                "city": "Warsaw",
                "country": "PL",
                "is_hq": false,
                "line_1": "ulica Emilii Plater 53",
                "postal_code": "00-125",
                "state": "MA"
            },
            {
                "city": "Bengaluru",
                "country": "IN",
                "is_hq": false,
                "line_1": "3 Swamy Vivekananda Road",
                "postal_code": "560016",
                "state": "Karnataka"
            },
            {
                "city": "Kirkland",
                "country": "US",
                "is_hq": false,
                "line_1": "777 6th St S",
                "postal_code": "98033",
                "state": "WA"
            },
            {
                "city": "Munich",
                "country": "DE",
                "is_hq": false,
                "line_1": "Erika-Mann-Strasse 33",
                "postal_code": "80636",
                "state": "BY"
            },
            {
                "city": "Miguel Hidalgo",
                "country": "MX",
                "is_hq": false,
                "line_1": "Montes Urales",
                "postal_code": "11000",
                "state": "CDMX"
            },
            {
                "city": "Buenos Aires City",
                "country": "AR",
                "is_hq": false,
                "line_1": "Avenida Alicia Moreau de Justo 350",
                "postal_code": "1107",
                "state": "Buenos Aires Autonomous City"
            },
            {
                "city": "Paris",
                "country": "FR",
                "is_hq": false,
                "line_1": "8 Rue de Londres",
                "postal_code": "75009",
                "state": "IdF"
            },
            {
                "city": "Tel Aviv-Yafo",
                "country": "IL",
                "is_hq": false,
                "line_1": "Yigal Allon 98",
                "postal_code": "67891",
                "state": "Tel Aviv"
            },
            {
                "city": "Berlin",
                "country": "DE",
                "is_hq": false,
                "line_1": "Unter den Linden 14",
                "postal_code": "10117",
                "state": "BE"
            },
            {
                "city": "Hamburg",
                "country": "DE",
                "is_hq": false,
                "line_1": "ABC-Strasse 19",
                "postal_code": "20354",
                "state": "HH"
            },
            {
                "city": "Frisco",
                "country": "US",
                "is_hq": false,
                "line_1": "6175 Main St",
                "postal_code": "75034",
                "state": "TX"
            },
            {
                "city": "Zurich",
                "country": "CH",
                "is_hq": false,
                "line_1": "Brandschenkestrasse 110",
                "postal_code": "8002",
                "state": "ZH"
            },
            {
                "city": "Stockholm",
                "country": "SE",
                "is_hq": false,
                "line_1": "Kungsbron 2",
                "postal_code": "111 22",
                "state": "Stockholm County"
            }
        ],
        "name": "Google",
        "profile_pic_url": "https://s3.us-west-000.backblazeb2.com/proxycurl/company/google/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request\u0026X-Amz-Date=20230119T060024Z\u0026X-Amz-Expires=3600\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=0d3500b39da8db1d2d8f5727a9ac39a7c4a88b4632ed68209dee12f06bc79aca",
        "search_id": "1441",
        "similar_companies": [
            {
                "industry": "Software Development",
                "link": "https://www.linkedin.com/company/amazon",
                "location": "Seattle, WA",
                "name": "Amazon"
            },
            {
                "industry": "Software Development",
                "link": "https://www.linkedin.com/company/microsoft",
                "location": "Redmond, Washington",
                "name": "Microsoft"
            },
            {
                "industry": "Computers and Electronics Manufacturing",
                "link": "https://www.linkedin.com/company/apple",
                "location": "Cupertino, California",
                "name": "Apple"
            },
            {
                "industry": "Software Development",
                "link": "https://www.linkedin.com/company/meta",
                "location": "Menlo Park, CA",
                "name": "Meta"
            },
            {
                "industry": "Entertainment Providers",
                "link": "https://www.linkedin.com/company/netflix",
                "location": "Los Gatos, CA",
                "name": "Netflix"
            },
            {
                "industry": "IT Services and IT Consulting",
                "link": "https://www.linkedin.com/company/ibm",
                "location": "Armonk, New York, NY",
                "name": "IBM"
            },
            {
                "industry": "Software Development",
                "link": "https://www.linkedin.com/company/linkedin",
                "location": "Sunnyvale, CA",
                "name": "LinkedIn"
            },
            {
                "industry": "Business Consulting and Services",
                "link": "https://www.linkedin.com/company/deloitte",
                "location": null,
                "name": "Deloitte"
            },
            {
                "industry": "IT Services and IT Consulting",
                "link": "https://in.linkedin.com/company/tata-consultancy-services",
                "location": "Mumbai, Maharashtra",
                "name": "Tata Consultancy Services"
            },
            {
                "industry": "Manufacturing",
                "link": "https://uk.linkedin.com/company/unilever",
                "location": "Blackfriars, London",
                "name": "Unilever"
            }
        ],
        "specialities": [
            "search",
            "ads",
            "mobile",
            "android",
            "online video",
            "apps",
            "machine learning",
            "virtual reality",
            "cloud",
            "hardware",
            "artificial intelligence",
            "youtube",
            "software"
        ],
        "tagline": null,
        "universal_name_id": "google",
        "updates": [
            {
                "article_link": null,
                "image": "https://media.licdn.com/dms/image/C5605AQFthnjiTD6Mvg/videocover-high/0/1660754102856?e=2147483647\u0026v=beta\u0026t=PPOsA9J3vCTXWhuZclqSBQl7DLSDLvy5hKWlkHI85YE",
                "posted_on": {
                    "day": 13,
                    "month": 9,
                    "year": 2022
                },
                "text": "Want to kick start your #LifeAtGoogle but not sure where to begin? Explore our Build Your Future site, where you can learn about developmental programs, learn tips for future interviews, sign up for informational events, and even hear real stories from Googlers who\u2019ve been where you are now. Get started \u2192 https://bit.ly/3SKPzQB",
                "total_likes": 4267
            },
            {
                "article_link": null,
                "image": "https://media.licdn.com/dms/image/C4D22AQGcvTlKRR3qvQ/feedshare-shrink_2048_1536/0/1672854668558?e=1676505600\u0026v=beta\u0026t=whRRx9ULPEuyw_FgUg4Z3N3O9iksyJW7ewCGZA6ujdg",
                "posted_on": null,
                "text": "Ariana, welcome to Google. Here\u2019s to a year full of growth, learning, and experiences at #LifeAtGoogle! \ud83c\udf89",
                "total_likes": 397
            },
            {
                "article_link": null,
                "image": "https://media.licdn.com/dms/image/C4D22AQGcvTlKRR3qvQ/feedshare-shrink_2048_1536/0/1672854668558?e=1676505600\u0026v=beta\u0026t=whRRx9ULPEuyw_FgUg4Z3N3O9iksyJW7ewCGZA6ujdg",
                "posted_on": {
                    "day": 6,
                    "month": 1,
                    "year": 2023
                },
                "text": null,
                "total_likes": 0
            },
            {
                "article_link": null,
                "image": "https://media.licdn.com/dms/image/C5622AQHlEhyso9-BAA/feedshare-shrink_800/0/1672235570251?e=1676505600\u0026v=beta\u0026t=PaHpVodYauVt_Th4eZRJAz_S5LuD_e6MJJZkqEiENBQ",
                "posted_on": {
                    "day": 10,
                    "month": 1,
                    "year": 2023
                },
                "text": "With a new year comes new beginnings. Welcome to Google, Mega, we\u2019re glad you and your #Mewgler are here! #LifeAtGoogle",
                "total_likes": 1252
            },
            {
                "article_link": null,
                "image": "https://media.licdn.com/dms/image/C5622AQHlEhyso9-BAA/feedshare-shrink_800/0/1672235570251?e=1676505600\u0026v=beta\u0026t=PaHpVodYauVt_Th4eZRJAz_S5LuD_e6MJJZkqEiENBQ",
                "posted_on": {
                    "day": 30,
                    "month": 12,
                    "year": 2022
                },
                "text": null,
                "total_likes": 0
            },
            {
                "article_link": null,
                "image": "https://media.licdn.com/dms/image/C5605AQHir6yRaHkgHg/feedshare-thumbnail_720_1280/0/1672258205329?e=2147483647\u0026v=beta\u0026t=ZILK1L9klkFzLD0SKezztfPT5rSbdscMWVcTMgoUeWY",
                "posted_on": {
                    "day": 30,
                    "month": 12,
                    "year": 2022
                },
                "text": "Turn on job alerts and explore all that the Google careers site has to offer \u2192 https://goo.gle/3HCR9kn #LifeAtGoogle",
                "total_likes": 2186
            },
            {
                "article_link": "https://blog.google/inside-google/life-at-google/jennys-path-to-become-a-director-of-customer-engineering/",
                "image": null,
                "posted_on": {
                    "day": 23,
                    "month": 12,
                    "year": 2022
                },
                "text": "\"Leaders at Google ask themselves, \u0027How can we get Googlers from where they are today to where they aspire to be?\u0027\" In the last #MyPathtoGoogle of the year, meet our Director of Customer Engineering based in Hong Kong, Jenny Sun. Jenny shares her path to a leadership role after starting in tech as a software engineer and how her desire to learn has helped her customers, teams, and personal career grow.",
                "total_likes": 2038
            },
            {
                "article_link": "https://fairygodboss.com/articles/im-a-team-lead-at-google-heres-how-ergs-and-mentorship-advanced-my-career",
                "image": null,
                "posted_on": {
                    "day": 23,
                    "month": 12,
                    "year": 2022
                },
                "text": "Meet Nancy Hwang, a Product Activation and Customer Experience team lead here at Google. Earlier this month, Nancy sat down with Fairygodboss to reflect on how mentorship and her involvement in an employee resource group have positively impacted her career journey at Google. \n\nRead about Nancy\u2019s story and her advice on how to advance your career \u2b07\ufe0f",
                "total_likes": 1490
            },
            {
                "article_link": null,
                "image": "https://media.licdn.com/dms/image/C4E22AQG2ZKINx_jsZw/feedshare-shrink_2048_1536/0/1670381081829?e=1676505600\u0026v=beta\u0026t=ywsC6hkhcztq3V61xVvf5go2D_rSr53Waoq3sdlczqY",
                "posted_on": {
                    "day": 23,
                    "month": 12,
                    "year": 2022
                },
                "text": "365 days full of learnings, and more to come! We\u2019re glad you\u2019re part of #LifeAtGoogle, Eunice.",
                "total_likes": 18817
            },
            {
                "article_link": null,
                "image": "https://media.licdn.com/dms/image/C4E22AQG2ZKINx_jsZw/feedshare-shrink_2048_1536/0/1670381081829?e=1676505600\u0026v=beta\u0026t=ywsC6hkhcztq3V61xVvf5go2D_rSr53Waoq3sdlczqY",
                "posted_on": {
                    "day": 13,
                    "month": 12,
                    "year": 2022
                },
                "text": null,
                "total_likes": 0
            },
            {
                "article_link": null,
                "image": null,
                "posted_on": {
                    "day": 23,
                    "month": 12,
                    "year": 2022
                },
                "text": "2022 is almost over, which means it\u2019s time to reflect! Googlers, you shared lots of projects with the world this year. Which was your favorite to work on? Which coworkers made your #LifeAtGoogle brighter every day? Tag them in the comments with a shoutout!",
                "total_likes": 1234
            },
            {
                "article_link": null,
                "image": "https://media.licdn.com/dms/image/C5622AQFLUJbMj4V7Vw/feedshare-shrink_800/0/1670208017850?e=1676505600\u0026v=beta\u0026t=qFxz6eV4tBGTznrHcq_qJw31_TePt6JrrjOXXwMF6Iw",
                "posted_on": {
                    "day": 16,
                    "month": 12,
                    "year": 2022
                },
                "text": "A bit of insight on the Noogler hat tradition from the team that keeps the tradition going! #LifeAtGoogle",
                "total_likes": 3078
            },
            {
                "article_link": null,
                "image": "https://media.licdn.com/dms/image/C5622AQFLUJbMj4V7Vw/feedshare-shrink_800/0/1670208017850?e=1676505600\u0026v=beta\u0026t=qFxz6eV4tBGTznrHcq_qJw31_TePt6JrrjOXXwMF6Iw",
                "posted_on": {
                    "day": 13,
                    "month": 12,
                    "year": 2022
                },
                "text": null,
                "total_likes": 0
            },
            {
                "article_link": null,
                "image": "https://media.licdn.com/dms/image/C5622AQHGS9rpL1dwCA/feedshare-shrink_2048_1536/0/1671117185457?e=1676505600\u0026v=beta\u0026t=7oFrPTZU5gB0uS1mzaVqt13ftFApKTeQah7Ace4iL7U",
                "posted_on": {
                    "day": 16,
                    "month": 12,
                    "year": 2022
                },
                "text": "Chris Kiagiri, Technical Account manager, joined Google 15 years ago, as Kenya\u2019s employee number 2. \n\nLast month at our Google Sandbox Nairobi event, he shared with our participants his career journey and Google\u2019s 15-years of Engineering in Africa.\n\n\u201cI often tell students that Google hadn\u2019t even been founded when I graduated from high school, so they shouldn\u0027t limit their dreams to the opportunities that currently exist.\u201c \n\nThank you to our participants, we hope you left with first-hand experience of what #LifeatGoogle is all about \u2014 and thank you to Chris and all other Googlers who made this experience possible! \n\nWant to learn more? Check out our upcoming and on-demand events here \u003e https://goo.gle/3VDHOg8",
                "total_likes": 1821
            }
        ],
        "website": "https://goo.gle/3m1IN7m"
    },
    "url": "https://www.linkedin.com/company/accenture"
}
Key Description Example
url
"https://www.linkedin.com/company/accenture"
profile See LinkedinCompany object

LinkedinCompany

Key Description Example
linkedin_internal_id
LinkedIn's Internal and immutable ID of this Company profile.
"1441"
description
"A problem isn\u0027t truly solved until it\u0027s solved for all. Googlers build products that help create opportunities for everyone, whether down the street or across the globe. Bring your insight, imagination and a healthy disregard for the impossible. Bring everything that makes you unique. Together, we can build for everyone.\n\nCheck out our career opportunities at careers.google.com."
website
"https://goo.gle/3m1IN7m"
industry
The industry attribute, found in a LinkedIn Company profile, describes the industry in which the company operates. The value of this attribute is an enumerator. This CSV file provides an exhaustive list of possible values for this attribute.
"Software Development"
company_size
Sequenceed range of company head count
[10001, null]
company_size_on_linkedin
319856
hq See CompanyLocation object
company_type
Possible values:

EDUCATIONAL: Educational Institution

GOVERNMENT_AGENCY: Government Agency

NON_PROFIT : Nonprofit

PARTNERSHIP : Partnership

PRIVATELY_HELD: Privately Held

PUBLIC_COMPANY: Public Company

SELF_EMPLOYED: Self-Employed

SELF_OWNED: Sole Proprietorship
"PUBLIC_COMPANY"
founded_year
null
specialities
A list of specialities.
["search", "ads", "mobile", "android", "online video", "apps", "machine learning", "virtual reality", "cloud", "hardware", "artificial intelligence", "youtube", "software"]
locations See CompanyLocation object
name
"Google"
tagline
"Think Different - But Not Too Different"
universal_name_id
"google"
profile_pic_url
"https://s3.us-west-000.backblazeb2.com/proxycurl/company/google/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request\u0026X-Amz-Date=20230119T060024Z\u0026X-Amz-Expires=3600\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=0d3500b39da8db1d2d8f5727a9ac39a7c4a88b4632ed68209dee12f06bc79aca"
background_cover_image_url
"https://s3.us-west-000.backblazeb2.com/proxycurl/company/google/cover?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request\u0026X-Amz-Date=20230119T060024Z\u0026X-Amz-Expires=3600\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=abb7a4b87583cffda8db24d58d906c644998fae8cbb99e98c69a35720fcd0050"
search_id "1441"
similar_companies See SimilarCompany object
affiliated_companies See AffiliatedCompany object
updates See CompanyUpdate object
follower_count
27472792
acquisitions
A Acquisition object
See Acquisition object
exit_data
List of Exit
See Exit object
extra
Company extra when extra=include
See CompanyDetails object
funding_data
Company Funding data when funding_data=include
See Funding object
categories
The categories attribute is fetched from the company's Crunchbase profile. Values for this attribute are free-form text, and there is no exhaustive list of categories. Consider the categories attribute as "hints" regarding the products or services offered by the company.
["artificial-intelligence", "virtual-reality"]

CompanyLocation

Key Description Example
country
"US"
city
"Mountain View"
postal_code
"94043"
line_1
"1600 Amphitheatre Parkway"
is_hq
true
state
"CA"

SimilarCompany

Key Description Example
name
"Amazon"
link
"https://www.linkedin.com/company/amazon"
industry
"Software Development"
location
"Seattle, WA"

AffiliatedCompany

Key Description Example
name
"LinkedIn"
link
"https://www.linkedin.com/company/linkedin"
industry
"Internet"
location
"Sunnyvale, California"

CompanyUpdate

Key Description Example
article_link
The URL for which the post links out to
"https://lnkd.in/gr7cb5by"
image
The URL to the image to the post (if it exists)
"https://media-exp1.licdn.com/dms/image/C5622AQEGh8idEAm14Q/feedshare-shrink_800/0/1633089889886?e=1637798400\u0026v=beta\u0026t=LtGtAUSJNrPYdHpVhTBLhGTWYqrHtFJ86PKSmTpou7c"
posted_on
A Date object
See Date object
text
The body of the update
"Introducing Personal Email Lookup API https://lnkd.in/gr7cb5by"
total_likes
The total likes a post has received
3

Date

Key Description Example
day
30
month
9
year
2023

Acquisition

Key Description Example
acquired See AcquiredCompany object
acquired_by
A Acquisitor object
See Acquisitor object

AcquiredCompany

Key Description Example
linkedin_profile_url
LinkedIn Company Profile URL of company that was involved
"https://www.linkedin.com/company/apple"
crunchbase_profile_url
Crunchbase Profile URL of company that was involved
"https://www.crunchbase.com/organization/apple"
announced_date
Date by which this event was announced
See Date object
price
Price of acquisition
300000000

Acquisitor

Key Description Example
linkedin_profile_url
LinkedIn Company Profile URL of company that was involved
"https://www.linkedin.com/company/nvidia"
crunchbase_profile_url
Crunchbase Profile URL of company that was involved
"https://www.crunchbase.com/organization/nvidia"
announced_date
Date by which this event was announced
See Date object
price
Price of acquisition
10000

Exit

Key Description Example
linkedin_profile_url
LinkedIn Profile URL of the company that has exited
"https://www.linkedin.com/company/motiondsp"
crunchbase_profile_url
Crunchbase Profile URL of the company that has exited
"https://www.crunchbase.com/organization/motiondsp"
name
Name of the company
"MotionDSP"

CompanyDetails

Key Description Example
ipo_status
IPO status of the company
"Public"
crunchbase_rank
A measure of prominence of this company by Crunchbase
13
founding_date
Date of founding
See Date object
operating_status
Status of the company's operational status
"Active"
company_type
Type of company
"For Profit"
contact_email
General contact email of the company
"[email protected]"
phone_number
General contact number of the company
"(140) 848-6200"
facebook_id
ID of the company's official Facebook account
"NVIDIA.IN"
twitter_id
ID of the company's official Twitter account
"nvidia"
number_of_funding_rounds
Total rounds of funding that this company has raised
3
total_funding_amount
Total venture capital raised by this company
4000000
stock_symbol
Stock symbol of this public company
"NASDAQ:NVDA"
ipo_date
The date by which this public company went public
See Date object
number_of_lead_investors
Total lead investors
3
number_of_investors
Total investors
4
total_fund_raised
The total amount of funds raised (by this VC firm) to be deployed as
subsidiary investments (applicable only for VC firms)
1000
number_of_investments
Total investments made by this VC firm (applicable only for VC firms)
50
number_of_lead_investments
Total investments that was led by this VC firm
(applicable only for VC firms)
3
number_of_exits
Total exits by this VC (applicable only for VC firms)
7
number_of_acquisitions
Total companies acquired by this company
2

Funding

Key Description Example
funding_type
Type of funding
"Grant"
money_raised
Amount of money raised
25000000
announced_date
Date of announcement
See Date object
number_of_investor
Number of investors in this round
1
investor_list
List of Investor
See Investor object

Investor

Key Description Example
linkedin_profile_url
LinkedIn Profile URL of investor
"https://linkedin.com/company/darpa"
name
Name of investor
"DARPA"
type
Type of investor
"organization"

Response Headers

Header Key Description Example
X-Proxycurl-Credit-Cost Total cost of credits for this API call 2

Remarks

The accuracy of the linkedin company profile returned is on a best-effort basis. Results are not guaranteed to be accurate. We are always improving on the accuracy of these endpoints iteratively.

Company Profile Endpoint

GET /proxycurl/api/linkedin/company

Cost: 1 credit / successful request. (Extra charges might be incurred if premium optional parameters are used. Please read the description of the parameters that you intend to use)

Get structured data of a Company Profile

curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/linkedin/company' \
    --data-urlencode 'url=https://www.linkedin.com/company/google/' \
    --data-urlencode 'resolve_numeric_id=true' \
    --data-urlencode 'categories=include' \
    --data-urlencode 'funding_data=include' \
    --data-urlencode 'extra=include' \
    --data-urlencode 'exit_data=include' \
    --data-urlencode 'acquisitions=include' \
    --data-urlencode 'use_cache=if-present'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/linkedin/company'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'url': 'https://www.linkedin.com/company/google/',
    'resolve_numeric_id': 'true',
    'categories': 'include',
    'funding_data': 'include',
    'extra': 'include',
    'exit_data': 'include',
    'acquisitions': 'include',
    'use_cache': 'if-present',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
url yes
URL of the LinkedIn Company Profile to crawl.

URL should be in the format of https://www.linkedin.com/company/<public_identifier>
https://www.linkedin.com/company/google/
resolve_numeric_id no
Enable support for Company Profile URLs with numerical IDs that you most frequently fetch from Sales Navigator.
We achieve this by resolving numerical IDs into vanity IDs with cached company profiles from LinkDB.
For example, we will turn https://www.linkedin.com/company/1234567890 to https://www.linkedin.com/company/acme-corp -- for which the API endpoint only supports the latter.

This parameter accepts the following values:
- false (default value) - Will not resolve numerical IDs.
- true - Enable support for Company Profile URLs with numerical IDs.
Costs an extra 2 credit on top of the base cost of the endpoint.
true
categories no
Appends categories data of this company.

Default value is "exclude".
The other acceptable value is "include", which will include these categories (if available) for 1 extra credit.
include
funding_data no
Returns a list of funding rounds that this company has received.

Default value is "exclude".
The other acceptable value is "include", which will include these categories (if available) for 1 extra credit.
include
extra no
Enriches the Company Profile with extra details from external sources.
Details include Crunchbase ranking, contact email, phone number, Facebook account, Twitter account, funding rounds and amount, IPO status, investor information, etc.

Default value is "exclude".
The other acceptable value is "include", which will include these extra details (if available) for 1 extra credit.
include
exit_data no
Returns a list of investment portfolio exits.

Default value is "exclude".
The other acceptable value is "include", which will include these categories (if available) for 1 extra credit.
include
acquisitions no
Provides further enriched data on acquisitions made by this company from external sources.

Default value is "exclude".
The other acceptable value is "include", which will include these acquisition data (if available) for 1 extra credit.
include
use_cache no
if-present The default behavior. Fetches profile from cache regardless of age of profile. If profile is not available in cache, API will attempt to source profile externally.

if-recent API will make a best effort to return a fresh profile no older than 29 days.Costs an extra 1 credit on top of the cost of the base endpoint.
if-present

Response

{
    "affiliated_companies": [
        {
            "industry": "Software Development",
            "link": "https://www.linkedin.com/company/youtube",
            "location": "San Bruno, CA",
            "name": "YouTube"
        },
        {
            "industry": "Software Development",
            "link": "https://www.linkedin.com/showcase/google-cloud",
            "location": "Mountain View, California",
            "name": "Google Cloud"
        },
        {
            "industry": "Advertising Services",
            "link": "https://www.linkedin.com/showcase/think-with-google",
            "location": "Mountain View, California",
            "name": "Think with Google"
        },
        {
            "industry": "Advertising Services",
            "link": "https://www.linkedin.com/showcase/google-ads-",
            "location": "Mountain View, California",
            "name": "Google Ads"
        },
        {
            "industry": "Software Development",
            "link": "https://www.linkedin.com/showcase/googledevelopers",
            "location": "Mountain View, CA",
            "name": "Google Developers"
        },
        {
            "industry": "Software Development",
            "link": "https://www.linkedin.com/showcase/google-analytics",
            "location": "Mountain View, California",
            "name": "Google Analytics"
        },
        {
            "industry": "IT Services and IT Consulting",
            "link": "https://www.linkedin.com/showcase/googleworkspace",
            "location": "Mountain View, California",
            "name": "Google Workspace"
        },
        {
            "industry": "Advertising Services",
            "link": "https://www.linkedin.com/showcase/googlemarketingplatform",
            "location": "Mountain View, California",
            "name": "Google Marketing Platform"
        },
        {
            "industry": "Software Development",
            "link": "https://www.linkedin.com/showcase/google-developer-groups",
            "location": "Mountain View, CA",
            "name": "Google Developer Groups (GDG)"
        },
        {
            "industry": "Advertising Services",
            "link": "https://www.linkedin.com/showcase/google-ad-manager",
            "location": "Mountain View, California",
            "name": "Google Ad Manager"
        },
        {
            "industry": "E-Learning Providers",
            "link": "https://www.linkedin.com/showcase/grow-with-google",
            "location": "Mountain View, California",
            "name": "Grow with Google"
        },
        {
            "industry": "Software Development",
            "link": "https://www.linkedin.com/showcase/google-for-startups",
            "location": "San Francisco, California",
            "name": "Google for Startups"
        },
        {
            "industry": "Research Services",
            "link": "https://www.linkedin.com/company/x",
            "location": "Mountain View, CA",
            "name": "X, the moonshot factory"
        },
        {
            "industry": "Technology, Information and Internet",
            "link": "https://www.linkedin.com/showcase/google-small-business",
            "location": "Mountain View, California",
            "name": "Google Small Business"
        },
        {
            "industry": "Technology, Information and Internet",
            "link": "https://www.linkedin.com/showcase/google-cloud-partners",
            "location": "Mountain View, California",
            "name": "Google Cloud Partners"
        },
        {
            "industry": "Human Resources Services",
            "link": "https://www.linkedin.com/showcase/rework-with-google",
            "location": null,
            "name": "re:Work with Google"
        },
        {
            "industry": "Advertising Services",
            "link": "https://www.linkedin.com/showcase/google-partners",
            "location": null,
            "name": "Google Partners"
        },
        {
            "industry": "IT Services and IT Consulting",
            "link": "https://www.linkedin.com/showcase/chrome-enterprise",
            "location": null,
            "name": "Chrome Enterprise"
        },
        {
            "industry": "Software Development",
            "link": "https://www.linkedin.com/showcase/androiddev",
            "location": "Mountain View, California",
            "name": "Android Developers"
        },
        {
            "industry": "IT Services and IT Consulting",
            "link": "https://www.linkedin.com/showcase/googleplaybiz",
            "location": "Mountain View, CA",
            "name": "Google Play business community"
        },
        {
            "industry": "Online Audio and Video Media",
            "link": "https://www.linkedin.com/showcase/google-news-initiative",
            "location": "Mountain View, CA",
            "name": "Google News Initiative"
        },
        {
            "industry": "Advertising Services",
            "link": "https://www.linkedin.com/showcase/googleadmob",
            "location": null,
            "name": "Google AdMob"
        },
        {
            "industry": "Software Development",
            "link": "https://www.linkedin.com/showcase/google-health",
            "location": null,
            "name": "Google Health"
        },
        {
            "industry": "Technology, Information and Internet",
            "link": "https://www.linkedin.com/showcase/google-pay",
            "location": "Mountain View, California",
            "name": "Google Pay"
        },
        {
            "industry": "Software Development",
            "link": "https://www.linkedin.com/showcase/google-user-research.",
            "location": null,
            "name": "Google User Experience Research"
        },
        {
            "industry": "Venture Capital and Private Equity Principals",
            "link": "https://ca.linkedin.com/company/capitalg",
            "location": "San Francisco, CA",
            "name": "CapitalG"
        },
        {
            "industry": "Software Development",
            "link": "https://www.linkedin.com/showcase/android_by_google",
            "location": null,
            "name": "Android"
        },
        {
            "industry": "IT Services and IT Consulting",
            "link": "https://www.linkedin.com/showcase/androidenterprise",
            "location": "Mountain View, CA",
            "name": "Android Enterprise"
        },
        {
            "industry": "Software Development",
            "link": "https://ng.linkedin.com/showcase/gwgafrica",
            "location": "Lagos, Lagos",
            "name": "Grow with Google Africa"
        },
        {
            "industry": "Software Development",
            "link": "https://www.linkedin.com/showcase/flutterdevofficial",
            "location": "Mountain View, California",
            "name": "Flutter Dev"
        },
        {
            "industry": "Software Development",
            "link": "https://www.linkedin.com/showcase/firebase",
            "location": "Mountain View, CA",
            "name": "Firebase"
        },
        {
            "industry": "Advertising Services",
            "link": "https://www.linkedin.com/company/adometry",
            "location": "Mountain View, CA",
            "name": "Adometry (acquired by Google)"
        },
        {
            "industry": "Software Development",
            "link": "https://www.linkedin.com/showcase/google-nest",
            "location": "Mountain View, California",
            "name": "Google Nest Pro \u0026 Enterprise Partners"
        },
        {
            "industry": "Software Development",
            "link": "https://www.linkedin.com/showcase/tensorflowdev",
            "location": null,
            "name": "TensorFlow"
        },
        {
            "industry": "Software Development",
            "link": "https://www.linkedin.com/showcase/google-developers-north-america",
            "location": "Mountain View, CA",
            "name": "Google Developers North America"
        },
        {
            "industry": "Technology, Information and Internet",
            "link": "https://www.linkedin.com/showcase/google-chrome",
            "location": "Mountain View, CA",
            "name": "Google Chrome"
        },
        {
            "industry": "Advertising Services",
            "link": "https://www.linkedin.com/showcase/rare-with-google",
            "location": null,
            "name": "Rare with Google"
        },
        {
            "industry": null,
            "link": "https://www.linkedin.com/showcase/flutterdev-hold",
            "location": null,
            "name": "Flutter"
        },
        {
            "industry": null,
            "link": "https://www.linkedin.com/showcase/firebase-hold",
            "location": null,
            "name": "Firebase"
        }
    ],
    "background_cover_image_url": "https://s3.us-west-000.backblazeb2.com/proxycurl/company/google/cover?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request\u0026X-Amz-Date=20230119T060024Z\u0026X-Amz-Expires=3600\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=abb7a4b87583cffda8db24d58d906c644998fae8cbb99e98c69a35720fcd0050",
    "company_size": [
        10001,
        null
    ],
    "company_size_on_linkedin": 319856,
    "company_type": "PUBLIC_COMPANY",
    "description": "A problem isn\u0027t truly solved until it\u0027s solved for all. Googlers build products that help create opportunities for everyone, whether down the street or across the globe. Bring your insight, imagination and a healthy disregard for the impossible. Bring everything that makes you unique. Together, we can build for everyone.\n\nCheck out our career opportunities at careers.google.com.",
    "follower_count": 27472792,
    "founded_year": null,
    "hq": {
        "city": "Mountain View",
        "country": "US",
        "is_hq": true,
        "line_1": "1600 Amphitheatre Parkway",
        "postal_code": "94043",
        "state": "CA"
    },
    "industry": "Software Development",
    "linkedin_internal_id": "1441",
    "locations": [
        {
            "city": "Mountain View",
            "country": "US",
            "is_hq": true,
            "line_1": "1600 Amphitheatre Parkway",
            "postal_code": "94043",
            "state": "CA"
        },
        {
            "city": "New York",
            "country": "US",
            "is_hq": false,
            "line_1": "111 8th Ave",
            "postal_code": "10011",
            "state": "NY"
        },
        {
            "city": "Amsterdam",
            "country": "NL",
            "is_hq": false,
            "line_1": "Claude Debussylaan 34",
            "postal_code": "1082 MD",
            "state": "North Holland"
        },
        {
            "city": "Sao Paulo",
            "country": "BR",
            "is_hq": false,
            "line_1": "Avenida Brigadeiro Faria Lima, 3477",
            "postal_code": "04538-133",
            "state": "SP"
        },
        {
            "city": "Kitchener",
            "country": "CA",
            "is_hq": false,
            "line_1": "51 Breithaupt St",
            "postal_code": "N2H 5G5",
            "state": "ON"
        },
        {
            "city": "Dublin",
            "country": "IE",
            "is_hq": false,
            "line_1": "Barrow Street",
            "postal_code": null,
            "state": "County Dublin"
        },
        {
            "city": "Bengaluru",
            "country": "IN",
            "is_hq": false,
            "line_1": "Old Madras Road",
            "postal_code": "560016",
            "state": "Karnataka"
        },
        {
            "city": "Boulder",
            "country": "US",
            "is_hq": false,
            "line_1": "2590 Pearl St",
            "postal_code": "80302",
            "state": "CO"
        },
        {
            "city": "Seattle",
            "country": "US",
            "is_hq": false,
            "line_1": "601 N 34th St",
            "postal_code": "98103",
            "state": "WA"
        },
        {
            "city": "Sydney",
            "country": "AU",
            "is_hq": false,
            "line_1": "48 Pirrama Rd",
            "postal_code": "2009",
            "state": "NSW"
        },
        {
            "city": "Irvine",
            "country": "US",
            "is_hq": false,
            "line_1": "19510 Jamboree Rd",
            "postal_code": "92612",
            "state": "CA"
        },
        {
            "city": "Chicago",
            "country": "US",
            "is_hq": false,
            "line_1": "320 N Morgan St",
            "postal_code": "60607",
            "state": "IL"
        },
        {
            "city": "Mumbai",
            "country": "IN",
            "is_hq": false,
            "line_1": "3 Bandra Kurla Complex Road",
            "postal_code": "400051",
            "state": "Maharashtra"
        },
        {
            "city": "Taguig City",
            "country": "PH",
            "is_hq": false,
            "line_1": "5th Ave",
            "postal_code": null,
            "state": "National Capital Region"
        },
        {
            "city": "Singapore",
            "country": "SG",
            "is_hq": false,
            "line_1": "3 Pasir Panjang Rd",
            "postal_code": "118484",
            "state": "Singapore"
        },
        {
            "city": "Hyderabad",
            "country": "IN",
            "is_hq": false,
            "line_1": "13",
            "postal_code": "500084",
            "state": "TS"
        },
        {
            "city": "Melbourne",
            "country": "AU",
            "is_hq": false,
            "line_1": "90 Collins St",
            "postal_code": "3000",
            "state": "VIC"
        },
        {
            "city": "San Bruno",
            "country": "US",
            "is_hq": false,
            "line_1": "901 Cherry Ave",
            "postal_code": "94066",
            "state": "CA"
        },
        {
            "city": "Madrid",
            "country": "ES",
            "is_hq": false,
            "line_1": "Plaza Pablo Ruiz Picasso",
            "postal_code": "28046",
            "state": "Community of Madrid"
        },
        {
            "city": "Washington",
            "country": "US",
            "is_hq": false,
            "line_1": "25 Massachusetts Ave NW",
            "postal_code": "20001",
            "state": "DC"
        },
        {
            "city": "Gurugram",
            "country": "IN",
            "is_hq": false,
            "line_1": "15",
            "postal_code": "122001",
            "state": "HR"
        },
        {
            "city": "Bogota",
            "country": "CO",
            "is_hq": false,
            "line_1": "Carrera 11A 94-45",
            "postal_code": "110221",
            "state": "Bogota, D.C."
        },
        {
            "city": "Wan Chai",
            "country": "HK",
            "is_hq": false,
            "line_1": "2 Matheson St",
            "postal_code": null,
            "state": "Hong Kong"
        },
        {
            "city": "Reston",
            "country": "US",
            "is_hq": false,
            "line_1": "1875 Explorer St",
            "postal_code": "20190",
            "state": "VA"
        },
        {
            "city": "Toronto",
            "country": "CA",
            "is_hq": false,
            "line_1": "111 Richmond St W",
            "postal_code": "M5H 2G4",
            "state": "ON"
        },
        {
            "city": "San Francisco",
            "country": "US",
            "is_hq": false,
            "line_1": "345 Spear St",
            "postal_code": "94105",
            "state": "CA"
        },
        {
            "city": "Cambridge",
            "country": "US",
            "is_hq": false,
            "line_1": "355 Main St",
            "postal_code": "02142",
            "state": "MA"
        },
        {
            "city": "Milan",
            "country": "IT",
            "is_hq": false,
            "line_1": "Via Federico Confalonieri, 4",
            "postal_code": "20124",
            "state": "Lomb."
        },
        {
            "city": "London",
            "country": "GB",
            "is_hq": false,
            "line_1": "St Giles High Street",
            "postal_code": "WC2H 8AG",
            "state": "England"
        },
        {
            "city": "Austin",
            "country": "US",
            "is_hq": false,
            "line_1": "9606 N Mopac Expy",
            "postal_code": "78759",
            "state": "TX"
        },
        {
            "city": "Los Angeles",
            "country": "US",
            "is_hq": false,
            "line_1": "340 Main St",
            "postal_code": "90291",
            "state": "CA"
        },
        {
            "city": "Madrid",
            "country": "ES",
            "is_hq": false,
            "line_1": "Plaza Pablo Ruiz Picasso",
            "postal_code": "28020",
            "state": "Community of Madrid"
        },
        {
            "city": "Ann Arbor",
            "country": "US",
            "is_hq": false,
            "line_1": "2300 Traverwood Dr",
            "postal_code": "48105",
            "state": "MI"
        },
        {
            "city": "Las Condes",
            "country": "CL",
            "is_hq": false,
            "line_1": "Avenida Costanera Sur",
            "postal_code": "7550000",
            "state": "Santiago Metropolitan"
        },
        {
            "city": "Atlanta",
            "country": "US",
            "is_hq": false,
            "line_1": "10 10th St NE",
            "postal_code": "30309",
            "state": "GA"
        },
        {
            "city": "Warsaw",
            "country": "PL",
            "is_hq": false,
            "line_1": "ulica Emilii Plater 53",
            "postal_code": "00-125",
            "state": "MA"
        },
        {
            "city": "Bengaluru",
            "country": "IN",
            "is_hq": false,
            "line_1": "3 Swamy Vivekananda Road",
            "postal_code": "560016",
            "state": "Karnataka"
        },
        {
            "city": "Kirkland",
            "country": "US",
            "is_hq": false,
            "line_1": "777 6th St S",
            "postal_code": "98033",
            "state": "WA"
        },
        {
            "city": "Munich",
            "country": "DE",
            "is_hq": false,
            "line_1": "Erika-Mann-Strasse 33",
            "postal_code": "80636",
            "state": "BY"
        },
        {
            "city": "Miguel Hidalgo",
            "country": "MX",
            "is_hq": false,
            "line_1": "Montes Urales",
            "postal_code": "11000",
            "state": "CDMX"
        },
        {
            "city": "Buenos Aires City",
            "country": "AR",
            "is_hq": false,
            "line_1": "Avenida Alicia Moreau de Justo 350",
            "postal_code": "1107",
            "state": "Buenos Aires Autonomous City"
        },
        {
            "city": "Paris",
            "country": "FR",
            "is_hq": false,
            "line_1": "8 Rue de Londres",
            "postal_code": "75009",
            "state": "IdF"
        },
        {
            "city": "Tel Aviv-Yafo",
            "country": "IL",
            "is_hq": false,
            "line_1": "Yigal Allon 98",
            "postal_code": "67891",
            "state": "Tel Aviv"
        },
        {
            "city": "Berlin",
            "country": "DE",
            "is_hq": false,
            "line_1": "Unter den Linden 14",
            "postal_code": "10117",
            "state": "BE"
        },
        {
            "city": "Hamburg",
            "country": "DE",
            "is_hq": false,
            "line_1": "ABC-Strasse 19",
            "postal_code": "20354",
            "state": "HH"
        },
        {
            "city": "Frisco",
            "country": "US",
            "is_hq": false,
            "line_1": "6175 Main St",
            "postal_code": "75034",
            "state": "TX"
        },
        {
            "city": "Zurich",
            "country": "CH",
            "is_hq": false,
            "line_1": "Brandschenkestrasse 110",
            "postal_code": "8002",
            "state": "ZH"
        },
        {
            "city": "Stockholm",
            "country": "SE",
            "is_hq": false,
            "line_1": "Kungsbron 2",
            "postal_code": "111 22",
            "state": "Stockholm County"
        }
    ],
    "name": "Google",
    "profile_pic_url": "https://s3.us-west-000.backblazeb2.com/proxycurl/company/google/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request\u0026X-Amz-Date=20230119T060024Z\u0026X-Amz-Expires=3600\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=0d3500b39da8db1d2d8f5727a9ac39a7c4a88b4632ed68209dee12f06bc79aca",
    "search_id": "1441",
    "similar_companies": [
        {
            "industry": "Software Development",
            "link": "https://www.linkedin.com/company/amazon",
            "location": "Seattle, WA",
            "name": "Amazon"
        },
        {
            "industry": "Software Development",
            "link": "https://www.linkedin.com/company/microsoft",
            "location": "Redmond, Washington",
            "name": "Microsoft"
        },
        {
            "industry": "Computers and Electronics Manufacturing",
            "link": "https://www.linkedin.com/company/apple",
            "location": "Cupertino, California",
            "name": "Apple"
        },
        {
            "industry": "Software Development",
            "link": "https://www.linkedin.com/company/meta",
            "location": "Menlo Park, CA",
            "name": "Meta"
        },
        {
            "industry": "Entertainment Providers",
            "link": "https://www.linkedin.com/company/netflix",
            "location": "Los Gatos, CA",
            "name": "Netflix"
        },
        {
            "industry": "IT Services and IT Consulting",
            "link": "https://www.linkedin.com/company/ibm",
            "location": "Armonk, New York, NY",
            "name": "IBM"
        },
        {
            "industry": "Software Development",
            "link": "https://www.linkedin.com/company/linkedin",
            "location": "Sunnyvale, CA",
            "name": "LinkedIn"
        },
        {
            "industry": "Business Consulting and Services",
            "link": "https://www.linkedin.com/company/deloitte",
            "location": null,
            "name": "Deloitte"
        },
        {
            "industry": "IT Services and IT Consulting",
            "link": "https://in.linkedin.com/company/tata-consultancy-services",
            "location": "Mumbai, Maharashtra",
            "name": "Tata Consultancy Services"
        },
        {
            "industry": "Manufacturing",
            "link": "https://uk.linkedin.com/company/unilever",
            "location": "Blackfriars, London",
            "name": "Unilever"
        }
    ],
    "specialities": [
        "search",
        "ads",
        "mobile",
        "android",
        "online video",
        "apps",
        "machine learning",
        "virtual reality",
        "cloud",
        "hardware",
        "artificial intelligence",
        "youtube",
        "software"
    ],
    "tagline": null,
    "universal_name_id": "google",
    "updates": [
        {
            "article_link": null,
            "image": "https://media.licdn.com/dms/image/C5605AQFthnjiTD6Mvg/videocover-high/0/1660754102856?e=2147483647\u0026v=beta\u0026t=PPOsA9J3vCTXWhuZclqSBQl7DLSDLvy5hKWlkHI85YE",
            "posted_on": {
                "day": 13,
                "month": 9,
                "year": 2022
            },
            "text": "Want to kick start your #LifeAtGoogle but not sure where to begin? Explore our Build Your Future site, where you can learn about developmental programs, learn tips for future interviews, sign up for informational events, and even hear real stories from Googlers who\u2019ve been where you are now. Get started \u2192 https://bit.ly/3SKPzQB",
            "total_likes": 4267
        },
        {
            "article_link": null,
            "image": "https://media.licdn.com/dms/image/C4D22AQGcvTlKRR3qvQ/feedshare-shrink_2048_1536/0/1672854668558?e=1676505600\u0026v=beta\u0026t=whRRx9ULPEuyw_FgUg4Z3N3O9iksyJW7ewCGZA6ujdg",
            "posted_on": null,
            "text": "Ariana, welcome to Google. Here\u2019s to a year full of growth, learning, and experiences at #LifeAtGoogle! \ud83c\udf89",
            "total_likes": 397
        },
        {
            "article_link": null,
            "image": "https://media.licdn.com/dms/image/C4D22AQGcvTlKRR3qvQ/feedshare-shrink_2048_1536/0/1672854668558?e=1676505600\u0026v=beta\u0026t=whRRx9ULPEuyw_FgUg4Z3N3O9iksyJW7ewCGZA6ujdg",
            "posted_on": {
                "day": 6,
                "month": 1,
                "year": 2023
            },
            "text": null,
            "total_likes": 0
        },
        {
            "article_link": null,
            "image": "https://media.licdn.com/dms/image/C5622AQHlEhyso9-BAA/feedshare-shrink_800/0/1672235570251?e=1676505600\u0026v=beta\u0026t=PaHpVodYauVt_Th4eZRJAz_S5LuD_e6MJJZkqEiENBQ",
            "posted_on": {
                "day": 10,
                "month": 1,
                "year": 2023
            },
            "text": "With a new year comes new beginnings. Welcome to Google, Mega, we\u2019re glad you and your #Mewgler are here! #LifeAtGoogle",
            "total_likes": 1252
        },
        {
            "article_link": null,
            "image": "https://media.licdn.com/dms/image/C5622AQHlEhyso9-BAA/feedshare-shrink_800/0/1672235570251?e=1676505600\u0026v=beta\u0026t=PaHpVodYauVt_Th4eZRJAz_S5LuD_e6MJJZkqEiENBQ",
            "posted_on": {
                "day": 30,
                "month": 12,
                "year": 2022
            },
            "text": null,
            "total_likes": 0
        },
        {
            "article_link": null,
            "image": "https://media.licdn.com/dms/image/C5605AQHir6yRaHkgHg/feedshare-thumbnail_720_1280/0/1672258205329?e=2147483647\u0026v=beta\u0026t=ZILK1L9klkFzLD0SKezztfPT5rSbdscMWVcTMgoUeWY",
            "posted_on": {
                "day": 30,
                "month": 12,
                "year": 2022
            },
            "text": "Turn on job alerts and explore all that the Google careers site has to offer \u2192 https://goo.gle/3HCR9kn #LifeAtGoogle",
            "total_likes": 2186
        },
        {
            "article_link": "https://blog.google/inside-google/life-at-google/jennys-path-to-become-a-director-of-customer-engineering/",
            "image": null,
            "posted_on": {
                "day": 23,
                "month": 12,
                "year": 2022
            },
            "text": "\"Leaders at Google ask themselves, \u0027How can we get Googlers from where they are today to where they aspire to be?\u0027\" In the last #MyPathtoGoogle of the year, meet our Director of Customer Engineering based in Hong Kong, Jenny Sun. Jenny shares her path to a leadership role after starting in tech as a software engineer and how her desire to learn has helped her customers, teams, and personal career grow.",
            "total_likes": 2038
        },
        {
            "article_link": "https://fairygodboss.com/articles/im-a-team-lead-at-google-heres-how-ergs-and-mentorship-advanced-my-career",
            "image": null,
            "posted_on": {
                "day": 23,
                "month": 12,
                "year": 2022
            },
            "text": "Meet Nancy Hwang, a Product Activation and Customer Experience team lead here at Google. Earlier this month, Nancy sat down with Fairygodboss to reflect on how mentorship and her involvement in an employee resource group have positively impacted her career journey at Google. \n\nRead about Nancy\u2019s story and her advice on how to advance your career \u2b07\ufe0f",
            "total_likes": 1490
        },
        {
            "article_link": null,
            "image": "https://media.licdn.com/dms/image/C4E22AQG2ZKINx_jsZw/feedshare-shrink_2048_1536/0/1670381081829?e=1676505600\u0026v=beta\u0026t=ywsC6hkhcztq3V61xVvf5go2D_rSr53Waoq3sdlczqY",
            "posted_on": {
                "day": 23,
                "month": 12,
                "year": 2022
            },
            "text": "365 days full of learnings, and more to come! We\u2019re glad you\u2019re part of #LifeAtGoogle, Eunice.",
            "total_likes": 18817
        },
        {
            "article_link": null,
            "image": "https://media.licdn.com/dms/image/C4E22AQG2ZKINx_jsZw/feedshare-shrink_2048_1536/0/1670381081829?e=1676505600\u0026v=beta\u0026t=ywsC6hkhcztq3V61xVvf5go2D_rSr53Waoq3sdlczqY",
            "posted_on": {
                "day": 13,
                "month": 12,
                "year": 2022
            },
            "text": null,
            "total_likes": 0
        },
        {
            "article_link": null,
            "image": null,
            "posted_on": {
                "day": 23,
                "month": 12,
                "year": 2022
            },
            "text": "2022 is almost over, which means it\u2019s time to reflect! Googlers, you shared lots of projects with the world this year. Which was your favorite to work on? Which coworkers made your #LifeAtGoogle brighter every day? Tag them in the comments with a shoutout!",
            "total_likes": 1234
        },
        {
            "article_link": null,
            "image": "https://media.licdn.com/dms/image/C5622AQFLUJbMj4V7Vw/feedshare-shrink_800/0/1670208017850?e=1676505600\u0026v=beta\u0026t=qFxz6eV4tBGTznrHcq_qJw31_TePt6JrrjOXXwMF6Iw",
            "posted_on": {
                "day": 16,
                "month": 12,
                "year": 2022
            },
            "text": "A bit of insight on the Noogler hat tradition from the team that keeps the tradition going! #LifeAtGoogle",
            "total_likes": 3078
        },
        {
            "article_link": null,
            "image": "https://media.licdn.com/dms/image/C5622AQFLUJbMj4V7Vw/feedshare-shrink_800/0/1670208017850?e=1676505600\u0026v=beta\u0026t=qFxz6eV4tBGTznrHcq_qJw31_TePt6JrrjOXXwMF6Iw",
            "posted_on": {
                "day": 13,
                "month": 12,
                "year": 2022
            },
            "text": null,
            "total_likes": 0
        },
        {
            "article_link": null,
            "image": "https://media.licdn.com/dms/image/C5622AQHGS9rpL1dwCA/feedshare-shrink_2048_1536/0/1671117185457?e=1676505600\u0026v=beta\u0026t=7oFrPTZU5gB0uS1mzaVqt13ftFApKTeQah7Ace4iL7U",
            "posted_on": {
                "day": 16,
                "month": 12,
                "year": 2022
            },
            "text": "Chris Kiagiri, Technical Account manager, joined Google 15 years ago, as Kenya\u2019s employee number 2. \n\nLast month at our Google Sandbox Nairobi event, he shared with our participants his career journey and Google\u2019s 15-years of Engineering in Africa.\n\n\u201cI often tell students that Google hadn\u2019t even been founded when I graduated from high school, so they shouldn\u0027t limit their dreams to the opportunities that currently exist.\u201c \n\nThank you to our participants, we hope you left with first-hand experience of what #LifeatGoogle is all about \u2014 and thank you to Chris and all other Googlers who made this experience possible! \n\nWant to learn more? Check out our upcoming and on-demand events here \u003e https://goo.gle/3VDHOg8",
            "total_likes": 1821
        }
    ],
    "website": "https://goo.gle/3m1IN7m"
}
Key Description Example
linkedin_internal_id
LinkedIn's Internal and immutable ID of this Company profile.
"1441"
description
"A problem isn\u0027t truly solved until it\u0027s solved for all. Googlers build products that help create opportunities for everyone, whether down the street or across the globe. Bring your insight, imagination and a healthy disregard for the impossible. Bring everything that makes you unique. Together, we can build for everyone.\n\nCheck out our career opportunities at careers.google.com."
website
"https://goo.gle/3m1IN7m"
industry
The industry attribute, found in a LinkedIn Company profile, describes the industry in which the company operates. The value of this attribute is an enumerator. This CSV file provides an exhaustive list of possible values for this attribute.
"Software Development"
company_size
Sequenceed range of company head count
[10001, null]
company_size_on_linkedin
319856
hq See CompanyLocation object
company_type
Possible values:

EDUCATIONAL: Educational Institution

GOVERNMENT_AGENCY: Government Agency

NON_PROFIT : Nonprofit

PARTNERSHIP : Partnership

PRIVATELY_HELD: Privately Held

PUBLIC_COMPANY: Public Company

SELF_EMPLOYED: Self-Employed

SELF_OWNED: Sole Proprietorship
"PUBLIC_COMPANY"
founded_year
null
specialities
A list of specialities.
["search", "ads", "mobile", "android", "online video", "apps", "machine learning", "virtual reality", "cloud", "hardware", "artificial intelligence", "youtube", "software"]
locations See CompanyLocation object
name
"Google"
tagline
"Think Different - But Not Too Different"
universal_name_id
"google"
profile_pic_url
"https://s3.us-west-000.backblazeb2.com/proxycurl/company/google/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request\u0026X-Amz-Date=20230119T060024Z\u0026X-Amz-Expires=3600\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=0d3500b39da8db1d2d8f5727a9ac39a7c4a88b4632ed68209dee12f06bc79aca"
background_cover_image_url
"https://s3.us-west-000.backblazeb2.com/proxycurl/company/google/cover?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request\u0026X-Amz-Date=20230119T060024Z\u0026X-Amz-Expires=3600\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=abb7a4b87583cffda8db24d58d906c644998fae8cbb99e98c69a35720fcd0050"
search_id "1441"
similar_companies See SimilarCompany object
affiliated_companies See AffiliatedCompany object
updates See CompanyUpdate object
follower_count
27472792
acquisitions
A Acquisition object
See Acquisition object
exit_data
List of Exit
See Exit object
extra
Company extra when extra=include
See CompanyDetails object
funding_data
Company Funding data when funding_data=include
See Funding object
categories
The categories attribute is fetched from the company's Crunchbase profile. Values for this attribute are free-form text, and there is no exhaustive list of categories. Consider the categories attribute as "hints" regarding the products or services offered by the company.
["artificial-intelligence", "virtual-reality"]

CompanyLocation

Key Description Example
country
"US"
city
"Mountain View"
postal_code
"94043"
line_1
"1600 Amphitheatre Parkway"
is_hq
true
state
"CA"

SimilarCompany

Key Description Example
name
"Amazon"
link
"https://www.linkedin.com/company/amazon"
industry
"Software Development"
location
"Seattle, WA"

AffiliatedCompany

Key Description Example
name
"LinkedIn"
link
"https://www.linkedin.com/company/linkedin"
industry
"Internet"
location
"Sunnyvale, California"

CompanyUpdate

Key Description Example
article_link
The URL for which the post links out to
"https://lnkd.in/gr7cb5by"
image
The URL to the image to the post (if it exists)
"https://media-exp1.licdn.com/dms/image/C5622AQEGh8idEAm14Q/feedshare-shrink_800/0/1633089889886?e=1637798400\u0026v=beta\u0026t=LtGtAUSJNrPYdHpVhTBLhGTWYqrHtFJ86PKSmTpou7c"
posted_on
A Date object
See Date object
text
The body of the update
"Introducing Personal Email Lookup API https://lnkd.in/gr7cb5by"
total_likes
The total likes a post has received
3

Date

Key Description Example
day
30
month
9
year
2023

Acquisition

Key Description Example
acquired See AcquiredCompany object
acquired_by
A Acquisitor object
See Acquisitor object

AcquiredCompany

Key Description Example
linkedin_profile_url
LinkedIn Company Profile URL of company that was involved
"https://www.linkedin.com/company/apple"
crunchbase_profile_url
Crunchbase Profile URL of company that was involved
"https://www.crunchbase.com/organization/apple"
announced_date
Date by which this event was announced
See Date object
price
Price of acquisition
300000000

Acquisitor

Key Description Example
linkedin_profile_url
LinkedIn Company Profile URL of company that was involved
"https://www.linkedin.com/company/nvidia"
crunchbase_profile_url
Crunchbase Profile URL of company that was involved
"https://www.crunchbase.com/organization/nvidia"
announced_date
Date by which this event was announced
See Date object
price
Price of acquisition
10000

Exit

Key Description Example
linkedin_profile_url
LinkedIn Profile URL of the company that has exited
"https://www.linkedin.com/company/motiondsp"
crunchbase_profile_url
Crunchbase Profile URL of the company that has exited
"https://www.crunchbase.com/organization/motiondsp"
name
Name of the company
"MotionDSP"

CompanyDetails

Key Description Example
ipo_status
IPO status of the company
"Public"
crunchbase_rank
A measure of prominence of this company by Crunchbase
13
founding_date
Date of founding
See Date object
operating_status
Status of the company's operational status
"Active"
company_type
Type of company
"For Profit"
contact_email
General contact email of the company
"[email protected]"
phone_number
General contact number of the company
"(140) 848-6200"
facebook_id
ID of the company's official Facebook account
"NVIDIA.IN"
twitter_id
ID of the company's official Twitter account
"nvidia"
number_of_funding_rounds
Total rounds of funding that this company has raised
3
total_funding_amount
Total venture capital raised by this company
4000000
stock_symbol
Stock symbol of this public company
"NASDAQ:NVDA"
ipo_date
The date by which this public company went public
See Date object
number_of_lead_investors
Total lead investors
3
number_of_investors
Total investors
4
total_fund_raised
The total amount of funds raised (by this VC firm) to be deployed as
subsidiary investments (applicable only for VC firms)
1000
number_of_investments
Total investments made by this VC firm (applicable only for VC firms)
50
number_of_lead_investments
Total investments that was led by this VC firm
(applicable only for VC firms)
3
number_of_exits
Total exits by this VC (applicable only for VC firms)
7
number_of_acquisitions
Total companies acquired by this company
2

Funding

Key Description Example
funding_type
Type of funding
"Grant"
money_raised
Amount of money raised
25000000
announced_date
Date of announcement
See Date object
number_of_investor
Number of investors in this round
1
investor_list
List of Investor
See Investor object

Investor

Key Description Example
linkedin_profile_url
LinkedIn Profile URL of investor
"https://linkedin.com/company/darpa"
name
Name of investor
"DARPA"
type
Type of investor
"organization"

Response Headers

Header Key Description Example
X-Proxycurl-Credit-Cost Total cost of credits for this API call 1

Contact API

Reverse Work Email Lookup Endpoint

GET /proxycurl/api/linkedin/profile/resolve/email

Cost: 3 credits / successful request.

Resolve LinkedIn Profile from a work email address

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

api_endpoint = 'https://nubela.co/proxycurl/api/linkedin/profile/resolve/email'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'work_email': '[email protected]',
    'enrich_profile': 'enrich',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
work_email yes
Work email address of the user
[email protected]
enrich_profile no
Enrich the result with a cached profile of the lookup result.

The valid values are:

* skip (default): do not enrich the results with cached profile data
* enrich: enriches the result with cached profile data

Calling this API endpoint with this parameter would add 1 credit.

If you require fresh profile data,
please chain this API call with the Person Profile Endpoint with the use_cache=if-recent parameter.
enrich

Response

{
    "profile": {
        "accomplishment_courses": [],
        "accomplishment_honors_awards": [],
        "accomplishment_organisations": [],
        "accomplishment_patents": [],
        "accomplishment_projects": [
            {
                "description": "gMessenger was built using Ruby on Rails, and the Bootstrap HTML, CSS, and JavaScript framework. It uses a Websocket-Rails integration to post a user\u0027s message content to the page in real time, with no page refresh required. gMessenger also includes custom authentication with three different permissions levels.",
                "ends_at": null,
                "starts_at": {
                    "day": 1,
                    "month": 3,
                    "year": 2015
                },
                "title": "gMessenger",
                "url": "http://gmessenger.herokuapp.com/"
            },
            {
                "description": "A task and project management responsive web app utilizing Ruby on Rails - CSS and HTML",
                "ends_at": null,
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2015
                },
                "title": "Taskly",
                "url": "https://hidden-coast-7204.herokuapp.com/"
            },
            {
                "description": "Injection molded residential and commercial wall mounts for iPads and iPods. This stylish flush wall mounted solution is meant to be used in conjunction with any Home Automation System.",
                "ends_at": null,
                "starts_at": {
                    "day": 1,
                    "month": 5,
                    "year": 2013
                },
                "title": "Simple Wall Mount",
                "url": "http://www.simplewallmount.com"
            },
            {
                "description": "Overwatch Safety Systems is developing an advanced warning and information distribution system to assist law enforcement and first responders with active shooter situations in public and private venues. The system utilizes modern sonic detection algorithms to sense and announce the position of active threats to people and property. This technology is also being designed as a hi-tech electronic deterrent for high profile or vulnerable venues.",
                "ends_at": null,
                "starts_at": null,
                "title": "Overwatch Safety Systems",
                "url": null
            }
        ],
        "accomplishment_publications": [],
        "accomplishment_test_scores": [],
        "activities": [
            {
                "activity_status": "Shared by John Marty",
                "link": "https://www.linkedin.com/posts/johnrmarty_financialfreedom-realestate-technology-activity-6940294635743301632-rsLo",
                "title": "Yesterday I toured a $1.2M property in California that has a large 13K sq ft lot with two homes on it. After 5 minutes of being on-site I\u2026"
            }
        ],
        "articles": [],
        "background_cover_image_url": "https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647\u0026v=beta\u0026t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU",
        "certifications": [
            {
                "authority": "Scaled Agile, Inc.",
                "display_source": null,
                "ends_at": null,
                "license_number": null,
                "name": "SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean Practices in the SAFe Enterprise)",
                "starts_at": null,
                "url": null
            },
            {
                "authority": "Scrum Alliance",
                "display_source": null,
                "ends_at": null,
                "license_number": null,
                "name": "SCRUM Alliance Certified Product Owner",
                "starts_at": null,
                "url": null
            },
            {
                "authority": "Scaled Agile, Inc.",
                "display_source": null,
                "ends_at": null,
                "license_number": null,
                "name": "Scaled Agile Framework PM/PO",
                "starts_at": null,
                "url": null
            }
        ],
        "city": "Seattle",
        "connections": 500,
        "country": "US",
        "country_full_name": "United States of America",
        "education": [
            {
                "activities_and_societies": null,
                "degree_name": "Master of Business Administration (MBA)",
                "description": null,
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 2015
                },
                "field_of_study": "Finance + Economics",
                "grade": null,
                "logo_url": "https://media.licdn.com/dms/image/C560BAQGVi9eAHgWxFw/company-logo_100_100/0/1673448029676?e=2147483647\u0026v=beta\u0026t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE",
                "school": "University of Colorado Denver",
                "school_linkedin_profile_url": "https://www.linkedin.com/school/university-of-colorado-denver/",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2013
                }
            },
            {
                "activities_and_societies": null,
                "degree_name": null,
                "description": "rails, ruby, rspec, capybara, bootstrap, css, html, api integration, Jquery, Javascript",
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 2015
                },
                "field_of_study": "School of Software Development",
                "grade": null,
                "logo_url": "https://media.licdn.com/dms/image/C560BAQFKNxOZ4X0g8Q/company-logo_100_100/0/1670610916338?e=2147483647\u0026v=beta\u0026t=t7ImfhmsuIJ7HJGHEbPJ2suxdslKhzp9v-5h9_G4sWE",
                "school": "Galvanize Inc",
                "school_linkedin_profile_url": "https://www.linkedin.com/school/galvanize-it/",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2015
                }
            },
            {
                "activities_and_societies": null,
                "degree_name": "BA",
                "description": null,
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 2005
                },
                "field_of_study": "Business",
                "grade": null,
                "logo_url": "https://media.licdn.com/dms/image/C4D0BAQGs5hZ3ROf-iw/company-logo_100_100/0/1519856111543?e=2147483647\u0026v=beta\u0026t=62k4mEoRdeQf4C6AF12Z05_t6i1VgNk50jr7RHkEsf8",
                "school": "Fort Lewis College",
                "school_linkedin_profile_url": "https://www.linkedin.com/school/fort-lewis-college/",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 1999
                }
            },
            {
                "activities_and_societies": null,
                "degree_name": "Japanese Language and Literature",
                "description": null,
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 2002
                },
                "field_of_study": null,
                "grade": null,
                "logo_url": null,
                "school": "Yamasa Institute Okazaki Japan",
                "school_linkedin_profile_url": null,
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2002
                }
            },
            {
                "activities_and_societies": null,
                "degree_name": null,
                "description": null,
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 2000
                },
                "field_of_study": "Spanish Language and Literature",
                "grade": null,
                "logo_url": null,
                "school": "Inter American University of Puerto Rico",
                "school_linkedin_profile_url": "https://www.linkedin.com/school/inter-american-university-of-puerto-rico/",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2000
                }
            },
            {
                "activities_and_societies": null,
                "degree_name": "High School",
                "description": null,
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 1999
                },
                "field_of_study": null,
                "grade": null,
                "logo_url": null,
                "school": "Western Reserve Academy",
                "school_linkedin_profile_url": null,
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 1996
                }
            }
        ],
        "experiences": [
            {
                "company": "Freedom Fund Real Estate",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/freedomfund",
                "description": "Our mission is to provide everyday people seeking financial freedom long before the age of 65 with the ability to invest in high yield, short-term real estate investments that were only accessible in the past for a select few wealthy individuals. Each of our single family rehab projects require a minimum investment contribution of only $10K, we have simple terms, no multi-year hold periods, and no fees. With our unique model investors can log into our easy to use website, select the projects that they want to invest in, and get realtime updates on the status of their investments.\n\nWebsite: https://www.freedomfundinvestments.com/home",
                "ends_at": null,
                "location": null,
                "logo_url": "https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647\u0026v=beta\u0026t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s",
                "starts_at": {
                    "day": 1,
                    "month": 8,
                    "year": 2021
                },
                "title": "Co-Founder"
            },
            {
                "company": "Mindset Reset Podcast",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/mindset-reset-podcast",
                "description": "We dive into the mindsets of the world\u2019s foremost thought leaders and turn them into actionable insights so that others can discover greater happiness, success, and fulfillment.\n\nhttps://podcasts.apple.com/us/podcast/mindset-reset/id1553212607",
                "ends_at": null,
                "location": "Denver, Colorado, United States",
                "logo_url": "https://media.licdn.com/dms/image/C560BAQF9QJVQm3SOvA/company-logo_100_100/0/1614527476576?e=2147483647\u0026v=beta\u0026t=m3tx83nMN-E3XQFoJG0Wmch8U4qKnJ9i--5NSAfffC0",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2021
                },
                "title": "Founder"
            },
            {
                "company": "Product School",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/product-school",
                "description": "Product School is a global leader in Product Management training with a community of over one million product professionals. As a featured speaker, I help inspire the next generation of Product Managers to create innovative products and apply best practices in their work.",
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 2020
                },
                "location": "Seattle, Washington, United States",
                "logo_url": "https://media.licdn.com/dms/image/C4E0BAQEKULb2pMnazw/company-logo_100_100/0/1657091674586?e=2147483647\u0026v=beta\u0026t=vgcwRvTFf1v-AxyFXfFuEm07g8Nlzsha12E6-aBj6lk",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2020
                },
                "title": "Featured Speaker"
            },
            {
                "company": "Project 1B",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/project-1b",
                "description": "The mission of Project 1B is to help 1 Billion people around the world maximize their sense of meaning so that they can lead more fulfilling lives. We do this through exposing the truth about success and happiness through the Mindset Reset Podcast, corporate training, youth education programs, group coaching, and investments in tech startups aligned with our mission.\n\nThe word success is widely understood as the attainment of financial gain, but somewhere along the lines we began believing that money = happiness, self worth, and meaning even though money has nothing to do with these things. Because of this twisted equation, young adults often make career decisions that solely maximize earning potential. And Ironically, if they manage to achieve society\u2019s definition of success, It often leaves many with a sense of meaninglessness.\n\nIf you want to live a meaningful life chase the word meaning as opposed to the word success - this simple shift in mindset will lead to a more authentic set of questions about the direction you should take your life.",
                "ends_at": null,
                "location": "Denver, Colorado, United States",
                "logo_url": "https://media.licdn.com/dms/image/C560BAQFG_MrwBC_iZg/company-logo_100_100/0/1594610187483?e=2147483647\u0026v=beta\u0026t=7NNWG1ZclbNsUW0k0PuD-v5xTmfpIcthOmHCDyMwWMk",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2020
                },
                "title": "Founder"
            },
            {
                "company": "YouTube",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/youtube",
                "description": "Mission: to help others land their dream jobs at a top tech companies that aligns with their passions.",
                "ends_at": null,
                "location": "Greater Seattle Area",
                "logo_url": "https://media.licdn.com/dms/image/C4D0BAQEfoRsyU4yUzg/company-logo_100_100/0/1631053379295?e=2147483647\u0026v=beta\u0026t=CmnUj5LeO5Yi-nA9xLgEYBPU5eZdLrPBG2qXmPhhoe4",
                "starts_at": {
                    "day": 1,
                    "month": 2,
                    "year": 2019
                },
                "title": "YouTube Content Creator - \"Tech Careers for Non-Engineers\""
            },
            {
                "company": "YouTube",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/youtube",
                "description": null,
                "ends_at": null,
                "location": "Seattle, Washington",
                "logo_url": "https://media.licdn.com/dms/image/C4D0BAQEfoRsyU4yUzg/company-logo_100_100/0/1631053379295?e=2147483647\u0026v=beta\u0026t=CmnUj5LeO5Yi-nA9xLgEYBPU5eZdLrPBG2qXmPhhoe4",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2017
                },
                "title": "Youtube Content Creator - \"John Marty\""
            },
            {
                "company": "Amazon",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/amazon",
                "description": "I had a mix of roles at Amazon from Sr. PM to Sr. Manager of Product\nTwo years were spent on Marketplace Product Quality and 2 years in New Business Innovation",
                "ends_at": {
                    "day": 31,
                    "month": 3,
                    "year": 2021
                },
                "location": "Greater Seattle Area",
                "logo_url": "https://media.licdn.com/dms/image/C560BAQHTvZwCx4p2Qg/company-logo_100_100/0/1612205615891?e=2147483647\u0026v=beta\u0026t=PG9v_TmuSDxc9nAjnwxAFTWfFwhri5iJcJ4bcODhtPA",
                "starts_at": {
                    "day": 1,
                    "month": 3,
                    "year": 2017
                },
                "title": "Sr. Manager of Product"
            },
            {
                "company": "American Express",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/american-express",
                "description": null,
                "ends_at": {
                    "day": 31,
                    "month": 3,
                    "year": 2017
                },
                "location": "Phoenix, Arizona Area",
                "logo_url": "https://media.licdn.com/dms/image/C4D0BAQGRhsociEn4gQ/company-logo_100_100/0/1523269243842?e=2147483647\u0026v=beta\u0026t=SHRbiG3uqsCTfE1Gyd77tgJWtHAm4cYp-c6uILKTVNs",
                "starts_at": {
                    "day": 1,
                    "month": 7,
                    "year": 2015
                },
                "title": "Senior Global Product Manager"
            },
            {
                "company": "Mile High Automation, Inc.",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/mile-high-automation-inc-",
                "description": "Mile High Automation is a Smart Home Technology (Internet of Things) software and hardware development company. Our mission is to flawlessly develop and deliver impeccable software, hardware and system design for the high-end consumer market nationally and internationally. \n\n\u2022  Performed a short term change management engagement to lead a 12 member cross functional team through a major strategy and vision transition\n\u2022  Developed an international supply chain that increased profit margin by 30% on core products\n\u2022  Conceptualized, implemented, and rolled out a CRM that led to a 15% higher month over month close rate; trained sales team on newly created key performance indicators to maximize growth\n\u2022  Developed, implemented and oversaw a training process that scaled to 180+ national subcontractors\n\u2022  Translated user stories into detailed product requirements documents that the software development team used to build new features and functionality \n\u2022  Developed benchmarks for customer service, sales, and traffic conversion to maximize profit",
                "ends_at": {
                    "day": 31,
                    "month": 7,
                    "year": 2014
                },
                "location": "Denver Colorado",
                "logo_url": "https://media.licdn.com/dms/image/C4E0BAQHofg3toK4P7A/company-logo_100_100/0/1519903210468?e=2147483647\u0026v=beta\u0026t=vasirOnrmfFkQru9S8JBNtci00COt_s9x2AOexxqd-8",
                "starts_at": {
                    "day": 1,
                    "month": 3,
                    "year": 2014
                },
                "title": "Sr. Product Manager"
            },
            {
                "company": "EOS Controls",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/eos-controls",
                "description": "A Smart Home Technology (Internet of Things) software and hardware development company specializing in the mid to high-end condominium market in the United States and South America. \nEOS Controls supports the advancement of affordable and easy to user smart home technology through a network of non-traditional sales channels of architects, designers, and contractors. \n\n\u2022  Coordinated engineering, design, and marketing strategy for the launch of 6 iOS apps\n\u2022  Led a 5 member product team of engineers; conducted daily stand-ups and weekly design review meetings\n\u2022  Managed and prioritized product backlog for development Sprints as well as tested products before release\n\u2022  Effectively placed products through non-traditional distribution channels by identifying and developing relationships with over 100 national and international builders, architects, and designers",
                "ends_at": {
                    "day": 31,
                    "month": 5,
                    "year": 2014
                },
                "location": "Miami, Florida",
                "logo_url": "https://media.licdn.com/dms/image/C560BAQFV1hvbuwyU-A/company-logo_100_100/0/1519867781218?e=2147483647\u0026v=beta\u0026t=s5UGQj-N-5VatokXj3YN6IxOPmKpUZeetC5OZH-B-xU",
                "starts_at": {
                    "day": 1,
                    "month": 2,
                    "year": 2012
                },
                "title": "Founder/ Chief Operating Officer"
            },
            {
                "company": "Axxis Audio",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/axxis-audio",
                "description": "Specializing in Smart Home Technology - Home Automation, Internet of Things\n\n\u2022  Raised $10,000 in investment to develop a home theater and home automation sales and installation business that grew to multi-million dollar sales (sold the company in 2011)\n\u2022  Developed mission-centric training, responsibility, and accountability framework \n\u2022  10 Direct Reports\n\u2022  Responsible for resource planning, scheduling, and project management \n\u2022  Filled the role of HR and developed a team building program for 10 direct reports, that included formal training, personal and professional peer support, mentoring and professional development; resulting in 20% higher retention rate and improved trust and communication\n\u2022  Deployed an ERP Solution in 2007 that unified 5 departments and provided a central reporting and accountability framework for a 23% employees productivity gain\n\u2022  Handled acquisition of 2nd largest competitor Cobalt Automation",
                "ends_at": {
                    "day": 31,
                    "month": 1,
                    "year": 2012
                },
                "location": "Durango Colorado",
                "logo_url": "https://media.licdn.com/dms/image/C560BAQHI-DLifzJs9Q/company-logo_100_100/0/1519868629336?e=2147483647\u0026v=beta\u0026t=l1Sk5NQO2Mtpo7HpppRkMhogjVXCwx5yxIxhcwUpNuc",
                "starts_at": {
                    "day": 1,
                    "month": 11,
                    "year": 2002
                },
                "title": "President/Founder"
            }
        ],
        "first_name": "John",
        "follower_count": null,
        "full_name": "John Marty",
        "groups": [],
        "headline": "Financial Freedom through Real Estate - LinkedIn Top Voice",
        "languages": [
            "English",
            "Spanish",
            "Japanese"
        ],
        "last_name": "Marty",
        "occupation": "Co-Founder at Freedom Fund Real Estate",
        "people_also_viewed": [],
        "profile_pic_url": "https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647\u0026v=beta\u0026t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI",
        "public_identifier": "johnrmarty",
        "recommendations": [
            "Rebecca Canfield\n\n      \n          \n          \n\n\n\n              \n                \n        \n              \n  \n\n      \n          John Marty is a genius at his craft. He is skilled in the art of making people feel empowered to seek out roles that they are qualified for, ask for salaries that they deserve, and creates a kind of pay it forward lifestyle. John helps you to get to places that you only thought were possible for other people. Anyone that is fortunate enough to learn from John should consider themselves extremely lucky. I know I do. ",
            "Zoe Sanoff\n\n      \n          \n          \n\n\n\n              \n                \n        \n              \n  \n\n      \n          John is so focused on helping guide you through an interview process not just for Amazon but on interviewing in general.  I\u0027ve generally done well at interviewing, my skills are top notch now.  John is so focused on on his clients and really goes above and beyond.  John is genuine, knowledgeable, well spoken and non-judgemental.  He is so encouraging, so positive and really easy to talk to.  Thank you John!"
        ],
        "similarly_named_profiles": [
            {
                "link": "https://www.linkedin.com/in/john-martinez-90384a229",
                "location": "San Antonio, TX",
                "name": "John Martinez",
                "summary": "Owner of Fight or Flight Medical Consultants, LLC  , Owner Marty\u2019s Hardwood Works"
            },
            {
                "link": "https://www.linkedin.com/in/senatormarty",
                "location": "St Paul, MN",
                "name": "John Marty",
                "summary": null
            },
            {
                "link": "https://www.linkedin.com/in/johnmarty",
                "location": "Orlando, FL",
                "name": "John Marty",
                "summary": "Lead Software Engineer, Commerce at Disney Parks  \u0026 Resorts Digital"
            },
            {
                "link": "https://www.linkedin.com/in/john-marty-ba56b478",
                "location": "Sarver, PA",
                "name": "John Marty",
                "summary": "Podiatrist at Ankle and Foot care inc"
            }
        ],
        "state": "Washington",
        "summary": "Most people go through life lost, disengaged, and unhappy at work and in their lives - I\u0027m on a mission to solve that.\n\nI spent 10 years as the founder of Axxis Audio, an electronics company that grew to multi-million dollar sales, which I sold in 2012. At that time, I funneled my earnings into the creation of an Internet of Things company, but numerous factors lead to its demise after 2 hard fought years. \n\nAt 31, I was penny-less, had a baby on the way, and had zero job prospects (despite applying to 150 companies). My desperate situation led me to take a job at Best Buy for $12 an hour while reinventing myself through the completion of an MBA at the University of Colorado, and a 6-month software development boot camp. \n\nAfter graduation, I landed at American Express as a Senior Product Manager and then got poached by Amazon in 2017 (because of my LinkedIn profile). My journey has led to a deep sense of perspective, humility, and purpose that I draw on to help others find clarity, meaning, and happiness in their careers and lives. \n\nCheck out my website for details on my Mindset Reset Podcast, Public Speaking, Consulting, or my free 40 page LinkedIn guide\n\nhttp://www.johnraphaelmarty.com/\n\nFAQ\u0027s\n\nQ: Can you speak at my Company, University, event or podcast?\nA: I\u0027d love to! I\u0027ve shared my message on the future of employment, breaking into big tech, and my personal story of reinventing myself and discovering my sense of purpose (and how you can too!).\n\n\u2611\ufe0f  YouTube Channel #1 (John Marty) : http://www.youtube.com/c/JohnMarty-uncommon\n\u2611\ufe0f  YouTube Channel #2 (Tech Careers for non-engineers: https://www.youtube.com/channel/UC900gMMPLwRGGXSTW1gdZHA\n\nFUN FACTS:\n\u2611\ufe0f I am an Avid cyclist and runner, and I just started learning to skateboard a half-pipe.\n\u2611\ufe0f Into the Enneagram? - I\u0027m a #3 (The Achiever)\n\nLETS CONNECT:\n\u2611\ufe0f Email: [email protected] (don\u0027t forget that \"R\"....The other guy gets my emails all the time)",
        "volunteer_work": []
    },
    "url": "https://www.linkedin.com/in/senatormarty"
}
Key Description Example
url
"https://www.linkedin.com/in/senatormarty"
profile See PersonEndpointResponse object

PersonEndpointResponse

Key Description Example
public_identifier
The vanity identifier of the public LinkedIn profile.
The vanity identifier comes after the /in/ part of the LinkedIn Profile URL
in the following format: https://www.linkedin.com/in/<public_identifier>
"johnrmarty"
profile_pic_url
A temporary link to the user's profile picture that is valid for 30 minutes.
The temporal nature of the link is by design to prevent having Proxycurl be the mirror for the images.
The developer is expected to handle these images by downloading the image and re-hosting the image.
See this post for context.
Some profile pictures might be of the standard LinkedIn's profile picture placeholder. It is so because. See this post for context.
"https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647\u0026v=beta\u0026t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI"
background_cover_image_url
A temporary link to the user's background cover picture
that is valid for 30 minutes.
The temporal nature of the link is by design to prevent
having Proxycurl be the mirror for the images.
The developer is expected to handle these images
by downloading the image and re-hosting the image.
See this post for context.
"https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647\u0026v=beta\u0026t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU"
first_name
First name of the user.
"John"
last_name
Last name of the user.
"Marty"
full_name
Full name of the user (first_name + last_name)
"John Marty"
follower_count
Follower count for this profile
null
occupation
The title and company name of the user's current employment.
"Co-Founder at Freedom Fund Real Estate"
headline
The tagline written by the user for his profile.
"Financial Freedom through Real Estate - LinkedIn Top Voice"
summary
A blurb (longer than the tagline) written by the user for his profile.
"Most people go through life lost, disengaged, and unhappy at work and in their lives - I\u0027m on a mission to solve that.\n\nI spent 10 years as the founder of Axxis Audio, an electronics company that grew to multi-million dollar sales, which I sold in 2012. At that time, I funneled my earnings into the creation of an Internet of Things company, but numerous factors lead to its demise after 2 hard fought years. \n\nAt 31, I was penny-less, had a baby on the way, and had zero job prospects (despite applying to 150 companies). My desperate situation led me to take a job at Best Buy for $12 an hour while reinventing myself through the completion of an MBA at the University of Colorado, and a 6-month software development boot camp. \n\nAfter graduation, I landed at American Express as a Senior Product Manager and then got poached by Amazon in 2017 (because of my LinkedIn profile). My journey has led to a deep sense of perspective, humility, and purpose that I draw on to help others find clarity, meaning, and happiness in their careers and lives. \n\nCheck out my website for details on my Mindset Reset Podcast, Public Speaking, Consulting, or my free 40 page LinkedIn guide\n\nhttp://www.johnraphaelmarty.com/\n\nFAQ\u0027s\n\nQ: Can you speak at my Company, University, event or podcast?\nA: I\u0027d love to! I\u0027ve shared my message on the future of employment, breaking into big tech, and my personal story of reinventing myself and discovering my sense of purpose (and how you can too!).\n\n\u2611\ufe0f YouTube Channel #1 (John Marty) : http://www.youtube.com/c/JohnMarty-uncommon\n\u2611\ufe0f YouTube Channel #2 (Tech Careers for non-engineers: https://www.youtube.com/channel/UC900gMMPLwRGGXSTW1gdZHA\n\nFUN FACTS:\n\u2611\ufe0f I am an Avid cyclist and runner, and I just started learning to skateboard a half-pipe.\n\u2611\ufe0f Into the Enneagram? - I\u0027m a #3 (The Achiever)\n\nLETS CONNECT:\n\u2611\ufe0f Email: [email protected] (don\u0027t forget that \"R\"....The other guy gets my emails all the time)"
country
The user's country of residence depicted by
a 2-letter country code (ISO 3166-1 alpha-2).
"US"
country_full_name
The user's country of residence, in English words.
"United States of America"
city
The city that the user is living at.
"Seattle"
state
The state that the user is living at.
"Washington"
experiences
The user's list of historic work experiences.
See Experience object
education
The user's list of education background.
See Education object
languages
A list of languages that the user claims to be familiar with,
and has added to his/her profile.
Do note that we do not have the proficiency level as
that data point is not available on a public LinkedIn profile.
["English", "Chinese", "Japanese"]
accomplishment_organisations
List of noteworthy organizations that this user is part of.
See AccomplishmentOrg object
accomplishment_publications
List of noteworthy publications that this user has partook in.
See Publication object
accomplishment_honors_awards
List of noteworthy honours and awards that this user has won.
See HonourAward object
accomplishment_patents
List of noteworthy patents won by this user.
See Patent object
accomplishment_courses
List of noteworthy courses partook by this user.
See Course object
accomplishment_projects
List of noteworthy projects undertaken by this user.
See Project object
accomplishment_test_scores
List of noteworthy test scores accomplished by this user.
See TestScore object
volunteer_work
List of historic volunteer work experiences.
See VolunteeringExperience object
certifications
List of noteworthy certifications accomplished by this user.
See Certification object
connections
Total count of LinkedIn connections.
500
people_also_viewed
A list of other LinkedIn profiles closely related to this user.
See PeopleAlsoViewed object
recommendations
List of recommendations made by other users about this profile.
["Professional and dedicated approach towards clients and collegues."]
activities
A list of LinkedIn status activities.
See Activity object
similarly_named_profiles
A list of other LinkedIn profiles with similar names.
See SimilarProfile object
articles
A list of content-based articles posted by this user.
See Article object
groups
A list of LinkedIn groups that this user is a part of.",
See PersonGroup object
inferred_salary
A salary range inferred from the user's current job title and company.
See InferredSalary object
gender
Gender of the user.
"male"
birth_date
Birth date of the user.
See Date object
industry
Industry that the user works in.
"government administration"
extra
A bundle of extra data on this user.
See PersonExtra object
interests
A list of interests that the user has.
["education", "health", "human rights"]
personal_emails
A list of personal emails associated with this user.
["[email protected]", "[email protected]", "cde@@outlook.com"]
personal_numbers
A list of personal mobile phone numbers associated with this user.
["+6512345678", "+6285123450953", "+6502300340"]

Experience

Key Description Example
starts_at
A Date object
See Date object
ends_at
null
company
The company's display name.
"Freedom Fund Real Estate"
company_linkedin_profile_url
The company's profile URL.
If present, could be used with
Company Profile Endpoint for more info.
"https://www.linkedin.com/company/freedomfund"
title
"Co-Founder"
description
"Our mission is to provide everyday people seeking financial freedom long before the age of 65 with the ability to invest in high yield, short-term real estate investments that were only accessible in the past for a select few wealthy individuals. Each of our single family rehab projects require a minimum investment contribution of only $10K, we have simple terms, no multi-year hold periods, and no fees. With our unique model investors can log into our easy to use website, select the projects that they want to invest in, and get realtime updates on the status of their investments.\n\nWebsite: https://www.freedomfundinvestments.com/home"
location
null
logo_url
URL of the logo of the organisation.
"https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647\u0026v=beta\u0026t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s"

Date

Key Description Example
day
1
month
8
year
2023

Education

Key Description Example
starts_at
{"day": 1, "month": 1, "year": 2013}
ends_at
{"day": 31, "month": 12, "year": 2015}
field_of_study
"Finance + Economics"
degree_name
"Master of Business Administration (MBA)"
school
"University of Colorado Denver"
school_linkedin_profile_url
"https://www.linkedin.com/school/university-of-colorado-denver/"
description
null
logo_url
"https://media.licdn.com/dms/image/C560BAQGVi9eAHgWxFw/company-logo_100_100/0/1673448029676?e=2147483647\u0026v=beta\u0026t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE"
grade
null
activities_and_societies
null

AccomplishmentOrg

Key Description Example
starts_at
{"day": 1, "month": 1, "year": 2012}
ends_at
{"day": 1, "month": 8, "year": 2016}
org_name
"Microsoft"
title
"Software Developer"
description
null

Publication

Key Description Example
name
Name of the publication.
"Nobel Peace Prize"
publisher
The publishing organisation body.
"Acme Corp"
published_on
Date of publication.
See Date object
description
Description of the publication.
"\n Lorem ipsum dolor sit amet, consectetur adipiscing elit\n "
url
URL of the publication.
"https://example.com"

HonourAward

Key Description Example
title
Title of the honour/award.
"Nobel Peace Prize"
issuer
The organisation body issuing this honour/award.
"Acme Corp"
issued_on
Date that this honour/awared was issued.
See Date object
description
Description of the honour/award.
"\n Lorem ipsum dolor sit amet, consectetur adipiscing elit\n "

Patent

Key Description Example
title
Title of the patent.
"The art of war"
issuer
The organisation body that issued the patent.
"Acme Corp"
issued_on
Date of patent issuance.
See Date object
description
Description of the patent.
"\n Lorem ipsum dolor sit amet, consectetur adipiscing elit\n "
application_number
Numerical representation that identifies the patent.
"123"
patent_number
Application number of the patent.
"123"
url
null

Course

Key Description Example
name
Name of the course
"The course about ABCs"
number
The numerical representation of the course
"123"

Project

Key Description Example
starts_at
A Date object
See Date object
ends_at
null
title
Name of the project that has been or is currently being worked on.
"gMessenger"
description
Description of the project.
"gMessenger was built using Ruby on Rails, and the Bootstrap HTML, CSS, and JavaScript framework. It uses a Websocket-Rails integration to post a user\u0027s message content to the page in real time, with no page refresh required. gMessenger also includes custom authentication with three different permissions levels."
url
A web location related to the project.
"http://gmessenger.herokuapp.com/"

TestScore

Key Description Example
name
Title of the course for which test score was derived from.
"CS1101S"
score
Test score
"A"
date_on
Date of test was assesed.
See Date object
description
Description of the test score.
"Nailed it without studying."

VolunteeringExperience

Key Description Example
starts_at
{"day": 1, "month": 1, "year": 2012}
ends_at
{"day": 1, "month": 8, "year": 2016}
title
Name of volunteer activity.
"Surveyor"
cause
"To help the world"
company
The company's display name.
"Microsoft"
company_linkedin_profile_url
The company's profile URL.
If present, could be used with
Company Profile Endpoint for more info.
"https://www.linkedin.com/company/microsoft"
description
null
logo_url
URL of the logo of the organisation.
null

Certification

Key Description Example
starts_at
null
ends_at
null
name
Name of the course or program.
"SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean Practices in the SAFe Enterprise)"
license_number
null
display_source
null
authority
The organisation body issuing this certificate.
"Scaled Agile, Inc."
url
null

PeopleAlsoViewed

Key Description Example
link
URL of the profile.
Useable with Person profile endpoint
"https://www.linkedin.com/in/johndoe"
name
"John Doe"
summary
"Software Engineer at Google"
location
"Singapore"

Activity

Key Description Example
title
"Yesterday I toured a $1.2M property in California that has a large 13K sq ft lot with two homes on it. After 5 minutes of being on-site I\u2026"
link
"https://www.linkedin.com/posts/johnrmarty_financialfreedom-realestate-technology-activity-6940294635743301632-rsLo"
activity_status
"Shared by John Marty"

SimilarProfile

Key Description Example
name
"John Martinez"
link
"https://www.linkedin.com/in/john-martinez-90384a229"
summary
"Owner of Fight or Flight Medical Consultants, LLC , Owner Marty\u2019s Hardwood Works"
location
"San Antonio, TX"

Article

Key Description Example
title
"Manufacturing opportunity"
link
"https://www.linkedin.com/pulse/manufacturing-opportunity-bill-gates/"
published_date
A Date object
See Date object
author
"Bill Gates"
image_url
"https://media-exp1.licdn.com/dms/image/C4E12AQFftuPi0UiqWA/article-cover_image-shrink_720_1280/0/1574801149114?e=1640822400\u0026v=beta\u0026t=ZAe3ERmQCM8QHGmRPS2LJ-C76GD5PR7FBHMVL4Z6iVg"

PersonGroup

Key Description Example
profile_pic_url
The URL to the profile picture of this LinkedIn Group
"https://media-exp1.licdn.com/dms/image/C4D07AQG9IK9V0pk3mQ/group-logo_image-shrink_92x92/0/1631371531293?e=1642060800\u0026v=beta\u0026t=UK1tfIppWa-Nx7k9whmm5f9XdZoBdJhApf9N3ke3204"
name
Name of LinkedIn group for which this user is in
"Hadoop Users"
url
URL to the LinkedIn Group
"https://www.linkedin.com/groups/988957"

InferredSalary

Key Description Example
min
35000
max
45000

PersonExtra

Key Description Example
github_profile_id
This profile's Github account.
"github-username"
facebook_profile_id
This profile's Facebook account.
"facebook-username"
twitter_profile_id
This profile's twitter account.
"twitter-username"

Response Headers

Header Key Description Example
X-Proxycurl-Credit-Cost Total cost of credits for this API call 3

Remarks

The accuracy of the linkedin profile returned is on a best-effort basis. Results are not guaranteed to be accurate. If you have more data points about the user, you are encouraged to use the Company Lookup Endpoint for better outcome.

Work Email Lookup Endpoint

GET /proxycurl/api/linkedin/profile/email

Cost: 3 credits / request. (Credits will be charged regardless if our API finds a work email or not.)

Lookup work email address of a LinkedIn Person Profile.

Email addresses returned are verified to not be role-based or catch-all emails. Email addresses returned by our API endpoint come with a 95+% deliverability guarantee

Endpoint behavior

This endpoint may not return results immediately.

If you provided a webhook in your request parameter, our application will call your webhook with the result once. See Webhook request below.

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' \
    --data-urlencode 'callback_url=https://webhook.site/29e12f17-d5a2-400a-9d08-42ee9d83600a'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/linkedin/profile/email'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'linkedin_profile_url': 'https://sg.linkedin.com/in/williamhgates',
    'callback_url': 'https://webhook.site/29e12f17-d5a2-400a-9d08-42ee9d83600a',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
linkedin_profile_url yes
Linkedin Profile URL of the person you want to
extract work email address from.
https://sg.linkedin.com/in/williamhgates
callback_url no
Webhook to notify your application when
the request has finished processing.
https://webhook.site/29e12f17-d5a2-400a-9d08-42ee9d83600a

Status codes

Status codes Description
202
The result is being processed. The API will send
results to you via callback if a callback URL is provided. You can also see the result on your dashboard.
The results sent to the callback will have the following format:
{'email': ..., 'status': ...}

Response

{
    "email_queue_count": 0
}
Key Description Example
email_queue_count
Total queue in the email extraction process
0

Response Headers

Header Key Description Example
X-Proxycurl-Credit-Cost Total cost of credits for this API call 3

Webhook request

We will make a POST request to your webhook, if one is provided under callback_url parameter in the initial request. The request will contain the following form data:

Key Description Example
email
Work email addres found (if any)
"[email protected]"
status
The status of the lookup attempt. It could return either:
email_found - For which we found a work email address.
email_not_found - For which we did not find a work email address.
"email_found"
profile_url
The LinkedIn Profile URL that is paired with the work
email address returned
"https://www.linkedin.com/in/williamhgates"

Personal Contact Number Lookup Endpoint

GET /proxycurl/api/contact-api/personal-contact

Cost: 1 credit / contact number returned.

Given an LinkedIn profile, returns a list of personal contact numbers belonging to this identity.

curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/contact-api/personal-contact' \
    --data-urlencode 'linkedin_profile_url=https://linkedin.com/in/test-phone-number'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/contact-api/personal-contact'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'linkedin_profile_url': 'https://linkedin.com/in/test-phone-number',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
linkedin_profile_url yes
LinkedIn Profile URL of the person you want to extract personal contact numbers from.
https://linkedin.com/in/test-phone-number

Response

{
    "numbers": [
        "+1123123123"
    ]
}
Key Description Example
numbers
A list of contact numbers
["+1123123123"]

Response Headers

Header Key Description Example
X-Proxycurl-Credit-Cost Total cost of credits for this API call 1

Personal Email Lookup Endpoint

GET /proxycurl/api/contact-api/personal-email

Cost: 1 credit / email returned.

Given an LinkedIn profile, returns a list of personal emails belonging to this identity. Emails are verified to be deliverable.

curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/contact-api/personal-email' \
    --data-urlencode 'linkedin_profile_url=https://linkedin.com/in/steven-goh-6738131b' \
    --data-urlencode 'email_validation=include'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/contact-api/personal-email'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'linkedin_profile_url': 'https://linkedin.com/in/steven-goh-6738131b',
    'email_validation': 'include',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
linkedin_profile_url yes
LinkedIn Profile URL of the person you want to extract personal email addresses from.
https://linkedin.com/in/steven-goh-6738131b
email_validation no
Perform deliverability validation on each email. (Costs 1 extra credit per email found).

Takes the following values:
* include - Perform email validation.
* exclude (default) - Do not perform email validation.
include

Response

{
    "emails": [
        "[email protected]",
        "[email protected]"
    ],
    "invalid_emails": [
        "[email protected]"
    ]
}
Key Description Example
emails
A list of personal emails
["[email protected]", "[email protected]"]
invalid_emails
A list of invalid personal emails
["[email protected]"]

Response Headers

Header Key Description Example
X-Proxycurl-Credit-Cost Total cost of credits for this API call 1

Disposable Email Address Check Endpoint

GET /proxycurl/api/disposable-email

Cost: 0 credit / request.

Given an email address, checks if the email address belongs to a disposable email service.

curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/disposable-email' \
    --data-urlencode '[email protected]'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/disposable-email'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'email': '[email protected]',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
email yes
Email address to check
[email protected]

Response

{
    "is_disposable_email": false,
    "is_free_email": false
}
Key Description Example
is_disposable_email
Returns a boolean value of the disposable nature of the given email address
false
is_free_email
Returns a boolean value of the free status of the given email address
false

Response Headers

Header Key Description Example
X-Proxycurl-Credit-Cost Total cost of credits for this API call 0

People API

Person Lookup Endpoint

GET /proxycurl/api/linkedin/profile/resolve

Cost: 2 credits / successful request.

Look up a person with a name and company information.

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'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/linkedin/profile/resolve'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'company_domain': 'gatesfoundation.org',
    'first_name': 'Bill',
    'similarity_checks': 'include',
    'enrich_profile': 'enrich',
    'location': 'Seattle',
    'title': 'Co-chair',
    'last_name': 'Gates',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
company_domain yes
Company name or domain
gatesfoundation.org
first_name yes
First name of the user
Bill
similarity_checks no
Controls whether the API endpoint performs
similarity comparisons between the input parameters
and the results or simply returns the closest match.
For instance, if you are searching for a person named
"Ben Chad", and the closest result we have is "Chavvy
Plum", our similarity checks will discard the obviously
incorrect result and return null instead of a false
positive.

Include similarity checks to eliminate false positives.
However, be aware that this might yield fewer results
as false positives are discarded. Credits will still be
deducted even if we return null.

You can choose to skip similarity checks, in which
case no credits will be charged if we return null.

This parameter accepts the following values:
* include (default) - Perform similarity checks and
discard false positives. Credits will be deducted even
if we return null .
* skip - Bypass similarity checks. No credits will be
deducted if no results are returned.
include
enrich_profile no
Enrich the result with a cached profile of the lookup result.

The valid values are:

* skip (default): do not enrich the results with cached profile data
* enrich: enriches the result with cached profile data

Calling this API endpoint with this parameter would add 1 credit.

If you require fresh profile data,
please chain this API call with the Person Profile Endpoint with the use_cache=if-recent parameter.
enrich
location no
The location of this user.

Name of country, city or state.
Seattle
title no
Title that user is holding at his/her current job
Co-chair
last_name no
Last name of the user
Gates

Response

{
    "profile": {
        "accomplishment_courses": [],
        "accomplishment_honors_awards": [],
        "accomplishment_organisations": [],
        "accomplishment_patents": [],
        "accomplishment_projects": [
            {
                "description": "gMessenger was built using Ruby on Rails, and the Bootstrap HTML, CSS, and JavaScript framework. It uses a Websocket-Rails integration to post a user\u0027s message content to the page in real time, with no page refresh required. gMessenger also includes custom authentication with three different permissions levels.",
                "ends_at": null,
                "starts_at": {
                    "day": 1,
                    "month": 3,
                    "year": 2015
                },
                "title": "gMessenger",
                "url": "http://gmessenger.herokuapp.com/"
            },
            {
                "description": "A task and project management responsive web app utilizing Ruby on Rails - CSS and HTML",
                "ends_at": null,
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2015
                },
                "title": "Taskly",
                "url": "https://hidden-coast-7204.herokuapp.com/"
            },
            {
                "description": "Injection molded residential and commercial wall mounts for iPads and iPods. This stylish flush wall mounted solution is meant to be used in conjunction with any Home Automation System.",
                "ends_at": null,
                "starts_at": {
                    "day": 1,
                    "month": 5,
                    "year": 2013
                },
                "title": "Simple Wall Mount",
                "url": "http://www.simplewallmount.com"
            },
            {
                "description": "Overwatch Safety Systems is developing an advanced warning and information distribution system to assist law enforcement and first responders with active shooter situations in public and private venues. The system utilizes modern sonic detection algorithms to sense and announce the position of active threats to people and property. This technology is also being designed as a hi-tech electronic deterrent for high profile or vulnerable venues.",
                "ends_at": null,
                "starts_at": null,
                "title": "Overwatch Safety Systems",
                "url": null
            }
        ],
        "accomplishment_publications": [],
        "accomplishment_test_scores": [],
        "activities": [
            {
                "activity_status": "Shared by John Marty",
                "link": "https://www.linkedin.com/posts/johnrmarty_financialfreedom-realestate-technology-activity-6940294635743301632-rsLo",
                "title": "Yesterday I toured a $1.2M property in California that has a large 13K sq ft lot with two homes on it. After 5 minutes of being on-site I\u2026"
            }
        ],
        "articles": [],
        "background_cover_image_url": "https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647\u0026v=beta\u0026t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU",
        "certifications": [
            {
                "authority": "Scaled Agile, Inc.",
                "display_source": null,
                "ends_at": null,
                "license_number": null,
                "name": "SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean Practices in the SAFe Enterprise)",
                "starts_at": null,
                "url": null
            },
            {
                "authority": "Scrum Alliance",
                "display_source": null,
                "ends_at": null,
                "license_number": null,
                "name": "SCRUM Alliance Certified Product Owner",
                "starts_at": null,
                "url": null
            },
            {
                "authority": "Scaled Agile, Inc.",
                "display_source": null,
                "ends_at": null,
                "license_number": null,
                "name": "Scaled Agile Framework PM/PO",
                "starts_at": null,
                "url": null
            }
        ],
        "city": "Seattle",
        "connections": 500,
        "country": "US",
        "country_full_name": "United States of America",
        "education": [
            {
                "activities_and_societies": null,
                "degree_name": "Master of Business Administration (MBA)",
                "description": null,
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 2015
                },
                "field_of_study": "Finance + Economics",
                "grade": null,
                "logo_url": "https://media.licdn.com/dms/image/C560BAQGVi9eAHgWxFw/company-logo_100_100/0/1673448029676?e=2147483647\u0026v=beta\u0026t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE",
                "school": "University of Colorado Denver",
                "school_linkedin_profile_url": "https://www.linkedin.com/school/university-of-colorado-denver/",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2013
                }
            },
            {
                "activities_and_societies": null,
                "degree_name": null,
                "description": "rails, ruby, rspec, capybara, bootstrap, css, html, api integration, Jquery, Javascript",
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 2015
                },
                "field_of_study": "School of Software Development",
                "grade": null,
                "logo_url": "https://media.licdn.com/dms/image/C560BAQFKNxOZ4X0g8Q/company-logo_100_100/0/1670610916338?e=2147483647\u0026v=beta\u0026t=t7ImfhmsuIJ7HJGHEbPJ2suxdslKhzp9v-5h9_G4sWE",
                "school": "Galvanize Inc",
                "school_linkedin_profile_url": "https://www.linkedin.com/school/galvanize-it/",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2015
                }
            },
            {
                "activities_and_societies": null,
                "degree_name": "BA",
                "description": null,
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 2005
                },
                "field_of_study": "Business",
                "grade": null,
                "logo_url": "https://media.licdn.com/dms/image/C4D0BAQGs5hZ3ROf-iw/company-logo_100_100/0/1519856111543?e=2147483647\u0026v=beta\u0026t=62k4mEoRdeQf4C6AF12Z05_t6i1VgNk50jr7RHkEsf8",
                "school": "Fort Lewis College",
                "school_linkedin_profile_url": "https://www.linkedin.com/school/fort-lewis-college/",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 1999
                }
            },
            {
                "activities_and_societies": null,
                "degree_name": "Japanese Language and Literature",
                "description": null,
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 2002
                },
                "field_of_study": null,
                "grade": null,
                "logo_url": null,
                "school": "Yamasa Institute Okazaki Japan",
                "school_linkedin_profile_url": null,
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2002
                }
            },
            {
                "activities_and_societies": null,
                "degree_name": null,
                "description": null,
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 2000
                },
                "field_of_study": "Spanish Language and Literature",
                "grade": null,
                "logo_url": null,
                "school": "Inter American University of Puerto Rico",
                "school_linkedin_profile_url": "https://www.linkedin.com/school/inter-american-university-of-puerto-rico/",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2000
                }
            },
            {
                "activities_and_societies": null,
                "degree_name": "High School",
                "description": null,
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 1999
                },
                "field_of_study": null,
                "grade": null,
                "logo_url": null,
                "school": "Western Reserve Academy",
                "school_linkedin_profile_url": null,
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 1996
                }
            }
        ],
        "experiences": [
            {
                "company": "Freedom Fund Real Estate",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/freedomfund",
                "description": "Our mission is to provide everyday people seeking financial freedom long before the age of 65 with the ability to invest in high yield, short-term real estate investments that were only accessible in the past for a select few wealthy individuals. Each of our single family rehab projects require a minimum investment contribution of only $10K, we have simple terms, no multi-year hold periods, and no fees. With our unique model investors can log into our easy to use website, select the projects that they want to invest in, and get realtime updates on the status of their investments.\n\nWebsite: https://www.freedomfundinvestments.com/home",
                "ends_at": null,
                "location": null,
                "logo_url": "https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647\u0026v=beta\u0026t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s",
                "starts_at": {
                    "day": 1,
                    "month": 8,
                    "year": 2021
                },
                "title": "Co-Founder"
            },
            {
                "company": "Mindset Reset Podcast",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/mindset-reset-podcast",
                "description": "We dive into the mindsets of the world\u2019s foremost thought leaders and turn them into actionable insights so that others can discover greater happiness, success, and fulfillment.\n\nhttps://podcasts.apple.com/us/podcast/mindset-reset/id1553212607",
                "ends_at": null,
                "location": "Denver, Colorado, United States",
                "logo_url": "https://media.licdn.com/dms/image/C560BAQF9QJVQm3SOvA/company-logo_100_100/0/1614527476576?e=2147483647\u0026v=beta\u0026t=m3tx83nMN-E3XQFoJG0Wmch8U4qKnJ9i--5NSAfffC0",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2021
                },
                "title": "Founder"
            },
            {
                "company": "Product School",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/product-school",
                "description": "Product School is a global leader in Product Management training with a community of over one million product professionals. As a featured speaker, I help inspire the next generation of Product Managers to create innovative products and apply best practices in their work.",
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 2020
                },
                "location": "Seattle, Washington, United States",
                "logo_url": "https://media.licdn.com/dms/image/C4E0BAQEKULb2pMnazw/company-logo_100_100/0/1657091674586?e=2147483647\u0026v=beta\u0026t=vgcwRvTFf1v-AxyFXfFuEm07g8Nlzsha12E6-aBj6lk",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2020
                },
                "title": "Featured Speaker"
            },
            {
                "company": "Project 1B",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/project-1b",
                "description": "The mission of Project 1B is to help 1 Billion people around the world maximize their sense of meaning so that they can lead more fulfilling lives. We do this through exposing the truth about success and happiness through the Mindset Reset Podcast, corporate training, youth education programs, group coaching, and investments in tech startups aligned with our mission.\n\nThe word success is widely understood as the attainment of financial gain, but somewhere along the lines we began believing that money = happiness, self worth, and meaning even though money has nothing to do with these things. Because of this twisted equation, young adults often make career decisions that solely maximize earning potential. And Ironically, if they manage to achieve society\u2019s definition of success, It often leaves many with a sense of meaninglessness.\n\nIf you want to live a meaningful life chase the word meaning as opposed to the word success - this simple shift in mindset will lead to a more authentic set of questions about the direction you should take your life.",
                "ends_at": null,
                "location": "Denver, Colorado, United States",
                "logo_url": "https://media.licdn.com/dms/image/C560BAQFG_MrwBC_iZg/company-logo_100_100/0/1594610187483?e=2147483647\u0026v=beta\u0026t=7NNWG1ZclbNsUW0k0PuD-v5xTmfpIcthOmHCDyMwWMk",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2020
                },
                "title": "Founder"
            },
            {
                "company": "YouTube",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/youtube",
                "description": "Mission: to help others land their dream jobs at a top tech companies that aligns with their passions.",
                "ends_at": null,
                "location": "Greater Seattle Area",
                "logo_url": "https://media.licdn.com/dms/image/C4D0BAQEfoRsyU4yUzg/company-logo_100_100/0/1631053379295?e=2147483647\u0026v=beta\u0026t=CmnUj5LeO5Yi-nA9xLgEYBPU5eZdLrPBG2qXmPhhoe4",
                "starts_at": {
                    "day": 1,
                    "month": 2,
                    "year": 2019
                },
                "title": "YouTube Content Creator - \"Tech Careers for Non-Engineers\""
            },
            {
                "company": "YouTube",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/youtube",
                "description": null,
                "ends_at": null,
                "location": "Seattle, Washington",
                "logo_url": "https://media.licdn.com/dms/image/C4D0BAQEfoRsyU4yUzg/company-logo_100_100/0/1631053379295?e=2147483647\u0026v=beta\u0026t=CmnUj5LeO5Yi-nA9xLgEYBPU5eZdLrPBG2qXmPhhoe4",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2017
                },
                "title": "Youtube Content Creator - \"John Marty\""
            },
            {
                "company": "Amazon",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/amazon",
                "description": "I had a mix of roles at Amazon from Sr. PM to Sr. Manager of Product\nTwo years were spent on Marketplace Product Quality and 2 years in New Business Innovation",
                "ends_at": {
                    "day": 31,
                    "month": 3,
                    "year": 2021
                },
                "location": "Greater Seattle Area",
                "logo_url": "https://media.licdn.com/dms/image/C560BAQHTvZwCx4p2Qg/company-logo_100_100/0/1612205615891?e=2147483647\u0026v=beta\u0026t=PG9v_TmuSDxc9nAjnwxAFTWfFwhri5iJcJ4bcODhtPA",
                "starts_at": {
                    "day": 1,
                    "month": 3,
                    "year": 2017
                },
                "title": "Sr. Manager of Product"
            },
            {
                "company": "American Express",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/american-express",
                "description": null,
                "ends_at": {
                    "day": 31,
                    "month": 3,
                    "year": 2017
                },
                "location": "Phoenix, Arizona Area",
                "logo_url": "https://media.licdn.com/dms/image/C4D0BAQGRhsociEn4gQ/company-logo_100_100/0/1523269243842?e=2147483647\u0026v=beta\u0026t=SHRbiG3uqsCTfE1Gyd77tgJWtHAm4cYp-c6uILKTVNs",
                "starts_at": {
                    "day": 1,
                    "month": 7,
                    "year": 2015
                },
                "title": "Senior Global Product Manager"
            },
            {
                "company": "Mile High Automation, Inc.",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/mile-high-automation-inc-",
                "description": "Mile High Automation is a Smart Home Technology (Internet of Things) software and hardware development company. Our mission is to flawlessly develop and deliver impeccable software, hardware and system design for the high-end consumer market nationally and internationally. \n\n\u2022  Performed a short term change management engagement to lead a 12 member cross functional team through a major strategy and vision transition\n\u2022  Developed an international supply chain that increased profit margin by 30% on core products\n\u2022  Conceptualized, implemented, and rolled out a CRM that led to a 15% higher month over month close rate; trained sales team on newly created key performance indicators to maximize growth\n\u2022  Developed, implemented and oversaw a training process that scaled to 180+ national subcontractors\n\u2022  Translated user stories into detailed product requirements documents that the software development team used to build new features and functionality \n\u2022  Developed benchmarks for customer service, sales, and traffic conversion to maximize profit",
                "ends_at": {
                    "day": 31,
                    "month": 7,
                    "year": 2014
                },
                "location": "Denver Colorado",
                "logo_url": "https://media.licdn.com/dms/image/C4E0BAQHofg3toK4P7A/company-logo_100_100/0/1519903210468?e=2147483647\u0026v=beta\u0026t=vasirOnrmfFkQru9S8JBNtci00COt_s9x2AOexxqd-8",
                "starts_at": {
                    "day": 1,
                    "month": 3,
                    "year": 2014
                },
                "title": "Sr. Product Manager"
            },
            {
                "company": "EOS Controls",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/eos-controls",
                "description": "A Smart Home Technology (Internet of Things) software and hardware development company specializing in the mid to high-end condominium market in the United States and South America. \nEOS Controls supports the advancement of affordable and easy to user smart home technology through a network of non-traditional sales channels of architects, designers, and contractors. \n\n\u2022  Coordinated engineering, design, and marketing strategy for the launch of 6 iOS apps\n\u2022  Led a 5 member product team of engineers; conducted daily stand-ups and weekly design review meetings\n\u2022  Managed and prioritized product backlog for development Sprints as well as tested products before release\n\u2022  Effectively placed products through non-traditional distribution channels by identifying and developing relationships with over 100 national and international builders, architects, and designers",
                "ends_at": {
                    "day": 31,
                    "month": 5,
                    "year": 2014
                },
                "location": "Miami, Florida",
                "logo_url": "https://media.licdn.com/dms/image/C560BAQFV1hvbuwyU-A/company-logo_100_100/0/1519867781218?e=2147483647\u0026v=beta\u0026t=s5UGQj-N-5VatokXj3YN6IxOPmKpUZeetC5OZH-B-xU",
                "starts_at": {
                    "day": 1,
                    "month": 2,
                    "year": 2012
                },
                "title": "Founder/ Chief Operating Officer"
            },
            {
                "company": "Axxis Audio",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/axxis-audio",
                "description": "Specializing in Smart Home Technology - Home Automation, Internet of Things\n\n\u2022  Raised $10,000 in investment to develop a home theater and home automation sales and installation business that grew to multi-million dollar sales (sold the company in 2011)\n\u2022  Developed mission-centric training, responsibility, and accountability framework \n\u2022  10 Direct Reports\n\u2022  Responsible for resource planning, scheduling, and project management \n\u2022  Filled the role of HR and developed a team building program for 10 direct reports, that included formal training, personal and professional peer support, mentoring and professional development; resulting in 20% higher retention rate and improved trust and communication\n\u2022  Deployed an ERP Solution in 2007 that unified 5 departments and provided a central reporting and accountability framework for a 23% employees productivity gain\n\u2022  Handled acquisition of 2nd largest competitor Cobalt Automation",
                "ends_at": {
                    "day": 31,
                    "month": 1,
                    "year": 2012
                },
                "location": "Durango Colorado",
                "logo_url": "https://media.licdn.com/dms/image/C560BAQHI-DLifzJs9Q/company-logo_100_100/0/1519868629336?e=2147483647\u0026v=beta\u0026t=l1Sk5NQO2Mtpo7HpppRkMhogjVXCwx5yxIxhcwUpNuc",
                "starts_at": {
                    "day": 1,
                    "month": 11,
                    "year": 2002
                },
                "title": "President/Founder"
            }
        ],
        "first_name": "John",
        "follower_count": null,
        "full_name": "John Marty",
        "groups": [],
        "headline": "Financial Freedom through Real Estate - LinkedIn Top Voice",
        "languages": [
            "English",
            "Spanish",
            "Japanese"
        ],
        "last_name": "Marty",
        "occupation": "Co-Founder at Freedom Fund Real Estate",
        "people_also_viewed": [],
        "profile_pic_url": "https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647\u0026v=beta\u0026t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI",
        "public_identifier": "johnrmarty",
        "recommendations": [
            "Rebecca Canfield\n\n      \n          \n          \n\n\n\n              \n                \n        \n              \n  \n\n      \n          John Marty is a genius at his craft. He is skilled in the art of making people feel empowered to seek out roles that they are qualified for, ask for salaries that they deserve, and creates a kind of pay it forward lifestyle. John helps you to get to places that you only thought were possible for other people. Anyone that is fortunate enough to learn from John should consider themselves extremely lucky. I know I do. ",
            "Zoe Sanoff\n\n      \n          \n          \n\n\n\n              \n                \n        \n              \n  \n\n      \n          John is so focused on helping guide you through an interview process not just for Amazon but on interviewing in general.  I\u0027ve generally done well at interviewing, my skills are top notch now.  John is so focused on on his clients and really goes above and beyond.  John is genuine, knowledgeable, well spoken and non-judgemental.  He is so encouraging, so positive and really easy to talk to.  Thank you John!"
        ],
        "similarly_named_profiles": [
            {
                "link": "https://www.linkedin.com/in/john-martinez-90384a229",
                "location": "San Antonio, TX",
                "name": "John Martinez",
                "summary": "Owner of Fight or Flight Medical Consultants, LLC  , Owner Marty\u2019s Hardwood Works"
            },
            {
                "link": "https://www.linkedin.com/in/senatormarty",
                "location": "St Paul, MN",
                "name": "John Marty",
                "summary": null
            },
            {
                "link": "https://www.linkedin.com/in/johnmarty",
                "location": "Orlando, FL",
                "name": "John Marty",
                "summary": "Lead Software Engineer, Commerce at Disney Parks  \u0026 Resorts Digital"
            },
            {
                "link": "https://www.linkedin.com/in/john-marty-ba56b478",
                "location": "Sarver, PA",
                "name": "John Marty",
                "summary": "Podiatrist at Ankle and Foot care inc"
            }
        ],
        "state": "Washington",
        "summary": "Most people go through life lost, disengaged, and unhappy at work and in their lives - I\u0027m on a mission to solve that.\n\nI spent 10 years as the founder of Axxis Audio, an electronics company that grew to multi-million dollar sales, which I sold in 2012. At that time, I funneled my earnings into the creation of an Internet of Things company, but numerous factors lead to its demise after 2 hard fought years. \n\nAt 31, I was penny-less, had a baby on the way, and had zero job prospects (despite applying to 150 companies). My desperate situation led me to take a job at Best Buy for $12 an hour while reinventing myself through the completion of an MBA at the University of Colorado, and a 6-month software development boot camp. \n\nAfter graduation, I landed at American Express as a Senior Product Manager and then got poached by Amazon in 2017 (because of my LinkedIn profile). My journey has led to a deep sense of perspective, humility, and purpose that I draw on to help others find clarity, meaning, and happiness in their careers and lives. \n\nCheck out my website for details on my Mindset Reset Podcast, Public Speaking, Consulting, or my free 40 page LinkedIn guide\n\nhttp://www.johnraphaelmarty.com/\n\nFAQ\u0027s\n\nQ: Can you speak at my Company, University, event or podcast?\nA: I\u0027d love to! I\u0027ve shared my message on the future of employment, breaking into big tech, and my personal story of reinventing myself and discovering my sense of purpose (and how you can too!).\n\n\u2611\ufe0f  YouTube Channel #1 (John Marty) : http://www.youtube.com/c/JohnMarty-uncommon\n\u2611\ufe0f  YouTube Channel #2 (Tech Careers for non-engineers: https://www.youtube.com/channel/UC900gMMPLwRGGXSTW1gdZHA\n\nFUN FACTS:\n\u2611\ufe0f I am an Avid cyclist and runner, and I just started learning to skateboard a half-pipe.\n\u2611\ufe0f Into the Enneagram? - I\u0027m a #3 (The Achiever)\n\nLETS CONNECT:\n\u2611\ufe0f Email: [email protected] (don\u0027t forget that \"R\"....The other guy gets my emails all the time)",
        "volunteer_work": []
    },
    "url": "https://www.linkedin.com/in/senatormarty"
}
Key Description Example
url
"https://www.linkedin.com/in/senatormarty"
profile See PersonEndpointResponse object

PersonEndpointResponse

Key Description Example
public_identifier
The vanity identifier of the public LinkedIn profile.
The vanity identifier comes after the /in/ part of the LinkedIn Profile URL
in the following format: https://www.linkedin.com/in/<public_identifier>
"johnrmarty"
profile_pic_url
A temporary link to the user's profile picture that is valid for 30 minutes.
The temporal nature of the link is by design to prevent having Proxycurl be the mirror for the images.
The developer is expected to handle these images by downloading the image and re-hosting the image.
See this post for context.
Some profile pictures might be of the standard LinkedIn's profile picture placeholder. It is so because. See this post for context.
"https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647\u0026v=beta\u0026t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI"
background_cover_image_url
A temporary link to the user's background cover picture
that is valid for 30 minutes.
The temporal nature of the link is by design to prevent
having Proxycurl be the mirror for the images.
The developer is expected to handle these images
by downloading the image and re-hosting the image.
See this post for context.
"https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647\u0026v=beta\u0026t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU"
first_name
First name of the user.
"John"
last_name
Last name of the user.
"Marty"
full_name
Full name of the user (first_name + last_name)
"John Marty"
follower_count
Follower count for this profile
null
occupation
The title and company name of the user's current employment.
"Co-Founder at Freedom Fund Real Estate"
headline
The tagline written by the user for his profile.
"Financial Freedom through Real Estate - LinkedIn Top Voice"
summary
A blurb (longer than the tagline) written by the user for his profile.
"Most people go through life lost, disengaged, and unhappy at work and in their lives - I\u0027m on a mission to solve that.\n\nI spent 10 years as the founder of Axxis Audio, an electronics company that grew to multi-million dollar sales, which I sold in 2012. At that time, I funneled my earnings into the creation of an Internet of Things company, but numerous factors lead to its demise after 2 hard fought years. \n\nAt 31, I was penny-less, had a baby on the way, and had zero job prospects (despite applying to 150 companies). My desperate situation led me to take a job at Best Buy for $12 an hour while reinventing myself through the completion of an MBA at the University of Colorado, and a 6-month software development boot camp. \n\nAfter graduation, I landed at American Express as a Senior Product Manager and then got poached by Amazon in 2017 (because of my LinkedIn profile). My journey has led to a deep sense of perspective, humility, and purpose that I draw on to help others find clarity, meaning, and happiness in their careers and lives. \n\nCheck out my website for details on my Mindset Reset Podcast, Public Speaking, Consulting, or my free 40 page LinkedIn guide\n\nhttp://www.johnraphaelmarty.com/\n\nFAQ\u0027s\n\nQ: Can you speak at my Company, University, event or podcast?\nA: I\u0027d love to! I\u0027ve shared my message on the future of employment, breaking into big tech, and my personal story of reinventing myself and discovering my sense of purpose (and how you can too!).\n\n\u2611\ufe0f YouTube Channel #1 (John Marty) : http://www.youtube.com/c/JohnMarty-uncommon\n\u2611\ufe0f YouTube Channel #2 (Tech Careers for non-engineers: https://www.youtube.com/channel/UC900gMMPLwRGGXSTW1gdZHA\n\nFUN FACTS:\n\u2611\ufe0f I am an Avid cyclist and runner, and I just started learning to skateboard a half-pipe.\n\u2611\ufe0f Into the Enneagram? - I\u0027m a #3 (The Achiever)\n\nLETS CONNECT:\n\u2611\ufe0f Email: [email protected] (don\u0027t forget that \"R\"....The other guy gets my emails all the time)"
country
The user's country of residence depicted by
a 2-letter country code (ISO 3166-1 alpha-2).
"US"
country_full_name
The user's country of residence, in English words.
"United States of America"
city
The city that the user is living at.
"Seattle"
state
The state that the user is living at.
"Washington"
experiences
The user's list of historic work experiences.
See Experience object
education
The user's list of education background.
See Education object
languages
A list of languages that the user claims to be familiar with,
and has added to his/her profile.
Do note that we do not have the proficiency level as
that data point is not available on a public LinkedIn profile.
["English", "Chinese", "Japanese"]
accomplishment_organisations
List of noteworthy organizations that this user is part of.
See AccomplishmentOrg object
accomplishment_publications
List of noteworthy publications that this user has partook in.
See Publication object
accomplishment_honors_awards
List of noteworthy honours and awards that this user has won.
See HonourAward object
accomplishment_patents
List of noteworthy patents won by this user.
See Patent object
accomplishment_courses
List of noteworthy courses partook by this user.
See Course object
accomplishment_projects
List of noteworthy projects undertaken by this user.
See Project object
accomplishment_test_scores
List of noteworthy test scores accomplished by this user.
See TestScore object
volunteer_work
List of historic volunteer work experiences.
See VolunteeringExperience object
certifications
List of noteworthy certifications accomplished by this user.
See Certification object
connections
Total count of LinkedIn connections.
500
people_also_viewed
A list of other LinkedIn profiles closely related to this user.
See PeopleAlsoViewed object
recommendations
List of recommendations made by other users about this profile.
["Professional and dedicated approach towards clients and collegues."]
activities
A list of LinkedIn status activities.
See Activity object
similarly_named_profiles
A list of other LinkedIn profiles with similar names.
See SimilarProfile object
articles
A list of content-based articles posted by this user.
See Article object
groups
A list of LinkedIn groups that this user is a part of.",
See PersonGroup object
inferred_salary
A salary range inferred from the user's current job title and company.
See InferredSalary object
gender
Gender of the user.
"male"
birth_date
Birth date of the user.
See Date object
industry
Industry that the user works in.
"government administration"
extra
A bundle of extra data on this user.
See PersonExtra object
interests
A list of interests that the user has.
["education", "health", "human rights"]
personal_emails
A list of personal emails associated with this user.
["[email protected]", "[email protected]", "cde@@outlook.com"]
personal_numbers
A list of personal mobile phone numbers associated with this user.
["+6512345678", "+6285123450953", "+6502300340"]

Experience

Key Description Example
starts_at
A Date object
See Date object
ends_at
null
company
The company's display name.
"Freedom Fund Real Estate"
company_linkedin_profile_url
The company's profile URL.
If present, could be used with
Company Profile Endpoint for more info.
"https://www.linkedin.com/company/freedomfund"
title
"Co-Founder"
description
"Our mission is to provide everyday people seeking financial freedom long before the age of 65 with the ability to invest in high yield, short-term real estate investments that were only accessible in the past for a select few wealthy individuals. Each of our single family rehab projects require a minimum investment contribution of only $10K, we have simple terms, no multi-year hold periods, and no fees. With our unique model investors can log into our easy to use website, select the projects that they want to invest in, and get realtime updates on the status of their investments.\n\nWebsite: https://www.freedomfundinvestments.com/home"
location
null
logo_url
URL of the logo of the organisation.
"https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647\u0026v=beta\u0026t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s"

Date

Key Description Example
day
1
month
8
year
2023

Education

Key Description Example
starts_at
{"day": 1, "month": 1, "year": 2013}
ends_at
{"day": 31, "month": 12, "year": 2015}
field_of_study
"Finance + Economics"
degree_name
"Master of Business Administration (MBA)"
school
"University of Colorado Denver"
school_linkedin_profile_url
"https://www.linkedin.com/school/university-of-colorado-denver/"
description
null
logo_url
"https://media.licdn.com/dms/image/C560BAQGVi9eAHgWxFw/company-logo_100_100/0/1673448029676?e=2147483647\u0026v=beta\u0026t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE"
grade
null
activities_and_societies
null

AccomplishmentOrg

Key Description Example
starts_at
{"day": 1, "month": 1, "year": 2012}
ends_at
{"day": 1, "month": 8, "year": 2016}
org_name
"Microsoft"
title
"Software Developer"
description
null

Publication

Key Description Example
name
Name of the publication.
"Nobel Peace Prize"
publisher
The publishing organisation body.
"Acme Corp"
published_on
Date of publication.
See Date object
description
Description of the publication.
"\n Lorem ipsum dolor sit amet, consectetur adipiscing elit\n "
url
URL of the publication.
"https://example.com"

HonourAward

Key Description Example
title
Title of the honour/award.
"Nobel Peace Prize"
issuer
The organisation body issuing this honour/award.
"Acme Corp"
issued_on
Date that this honour/awared was issued.
See Date object
description
Description of the honour/award.
"\n Lorem ipsum dolor sit amet, consectetur adipiscing elit\n "

Patent

Key Description Example
title
Title of the patent.
"The art of war"
issuer
The organisation body that issued the patent.
"Acme Corp"
issued_on
Date of patent issuance.
See Date object
description
Description of the patent.
"\n Lorem ipsum dolor sit amet, consectetur adipiscing elit\n "
application_number
Numerical representation that identifies the patent.
"123"
patent_number
Application number of the patent.
"123"
url
null

Course

Key Description Example
name
Name of the course
"The course about ABCs"
number
The numerical representation of the course
"123"

Project

Key Description Example
starts_at
A Date object
See Date object
ends_at
null
title
Name of the project that has been or is currently being worked on.
"gMessenger"
description
Description of the project.
"gMessenger was built using Ruby on Rails, and the Bootstrap HTML, CSS, and JavaScript framework. It uses a Websocket-Rails integration to post a user\u0027s message content to the page in real time, with no page refresh required. gMessenger also includes custom authentication with three different permissions levels."
url
A web location related to the project.
"http://gmessenger.herokuapp.com/"

TestScore

Key Description Example
name
Title of the course for which test score was derived from.
"CS1101S"
score
Test score
"A"
date_on
Date of test was assesed.
See Date object
description
Description of the test score.
"Nailed it without studying."

VolunteeringExperience

Key Description Example
starts_at
{"day": 1, "month": 1, "year": 2012}
ends_at
{"day": 1, "month": 8, "year": 2016}
title
Name of volunteer activity.
"Surveyor"
cause
"To help the world"
company
The company's display name.
"Microsoft"
company_linkedin_profile_url
The company's profile URL.
If present, could be used with
Company Profile Endpoint for more info.
"https://www.linkedin.com/company/microsoft"
description
null
logo_url
URL of the logo of the organisation.
null

Certification

Key Description Example
starts_at
null
ends_at
null
name
Name of the course or program.
"SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean Practices in the SAFe Enterprise)"
license_number
null
display_source
null
authority
The organisation body issuing this certificate.
"Scaled Agile, Inc."
url
null

PeopleAlsoViewed

Key Description Example
link
URL of the profile.
Useable with Person profile endpoint
"https://www.linkedin.com/in/johndoe"
name
"John Doe"
summary
"Software Engineer at Google"
location
"Singapore"

Activity

Key Description Example
title
"Yesterday I toured a $1.2M property in California that has a large 13K sq ft lot with two homes on it. After 5 minutes of being on-site I\u2026"
link
"https://www.linkedin.com/posts/johnrmarty_financialfreedom-realestate-technology-activity-6940294635743301632-rsLo"
activity_status
"Shared by John Marty"

SimilarProfile

Key Description Example
name
"John Martinez"
link
"https://www.linkedin.com/in/john-martinez-90384a229"
summary
"Owner of Fight or Flight Medical Consultants, LLC , Owner Marty\u2019s Hardwood Works"
location
"San Antonio, TX"

Article

Key Description Example
title
"Manufacturing opportunity"
link
"https://www.linkedin.com/pulse/manufacturing-opportunity-bill-gates/"
published_date
A Date object
See Date object
author
"Bill Gates"
image_url
"https://media-exp1.licdn.com/dms/image/C4E12AQFftuPi0UiqWA/article-cover_image-shrink_720_1280/0/1574801149114?e=1640822400\u0026v=beta\u0026t=ZAe3ERmQCM8QHGmRPS2LJ-C76GD5PR7FBHMVL4Z6iVg"

PersonGroup

Key Description Example
profile_pic_url
The URL to the profile picture of this LinkedIn Group
"https://media-exp1.licdn.com/dms/image/C4D07AQG9IK9V0pk3mQ/group-logo_image-shrink_92x92/0/1631371531293?e=1642060800\u0026v=beta\u0026t=UK1tfIppWa-Nx7k9whmm5f9XdZoBdJhApf9N3ke3204"
name
Name of LinkedIn group for which this user is in
"Hadoop Users"
url
URL to the LinkedIn Group
"https://www.linkedin.com/groups/988957"

InferredSalary

Key Description Example
min
35000
max
45000

PersonExtra

Key Description Example
github_profile_id
This profile's Github account.
"github-username"
facebook_profile_id
This profile's Facebook account.
"facebook-username"
twitter_profile_id
This profile's twitter account.
"twitter-username"

Response Headers

Header Key Description Example
X-Proxycurl-Credit-Cost Total cost of credits for this API call 2

Remarks

The accuracy of the linkedin profile returned is on a best-effort basis. Results are not guaranteed to be accurate. We are always improving on the accuracy of these endpoints iteratively.

Person Profile Picture Endpoint

GET /proxycurl/api/linkedin/person/profile-picture

Cost: 0 credit / successful request.

Get the profile picture of a person.

Profile pictures are served from cached people profiles found within LinkDB. If the profile does not exist within LinkDB, then the API will return a 404 status code.

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/'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/linkedin/person/profile-picture'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'linkedin_person_profile_url': 'https://www.linkedin.com/in/williamhgates/',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
linkedin_person_profile_url yes
LinkedIn Profile URL of the person that you are trying to get the profile picture of.
https://www.linkedin.com/in/williamhgates/

Response

{
    "tmp_profile_pic_url": "http://localhost:4566/proxycurl-web-dev/person/williamhgates/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=%2F20220912%2F%2Fs3%2Faws4_request\u0026X-Amz-Date=20220912T065816Z\u0026X-Amz-Expires=1800\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=90c8940f41a287bec0492da96a1f331e49fdbb81d08aeff0d7f251fdff90facd"
}
Key Description Example
tmp_profile_pic_url
Temporary URL to the profile picture (valid for just 30 minutes).
See this blog post for more information.
"http://localhost:4566/proxycurl-web-dev/person/williamhgates/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=%2F20220912%2F%2Fs3%2Faws4_request\u0026X-Amz-Date=20220912T065816Z\u0026X-Amz-Expires=1800\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=90c8940f41a287bec0492da96a1f331e49fdbb81d08aeff0d7f251fdff90facd"

Response Headers

Header Key Description Example
X-Proxycurl-Credit-Cost Total cost of credits for this API call 0

Role Lookup Endpoint

GET /proxycurl/api/find/company/role/

Cost: 3 credits / successful request.

Finds the closest (person) profile with a given role in a Company. For example, you can use this endpoint to find the "CTO" of "Apple". This API endpoint returns only one result that is the closest match.

There is also the Employee Search Endpoint which is powered by LinkDB if you require:

curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/find/company/role/' \
    --data-urlencode 'role=ceo' \
    --data-urlencode 'company_name=nubela' \
    --data-urlencode 'enrich_profile=enrich'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/find/company/role/'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'role': 'ceo',
    'company_name': 'nubela',
    'enrich_profile': 'enrich',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
role yes
Role of the profile that you are lookin up
ceo
company_name yes
Name of the company that you are searching for
nubela
enrich_profile no
Enrich the result with a cached profile of the lookup result.

The valid values are:

* skip (default): do not enrich the results with cached profile data
* enrich: enriches the result with cached profile data

Calling this API endpoint with this parameter would add 1 credit.

If you require fresh profile data,
please chain this API call with the Person Profile Endpoint with the use_cache=if-recent parameter.
enrich

Response

{
    "linkedin_profile_url": "https://www.linkedin.com/in/senatormarty",
    "profile": {
        "accomplishment_courses": [],
        "accomplishment_honors_awards": [],
        "accomplishment_organisations": [],
        "accomplishment_patents": [],
        "accomplishment_projects": [
            {
                "description": "gMessenger was built using Ruby on Rails, and the Bootstrap HTML, CSS, and JavaScript framework. It uses a Websocket-Rails integration to post a user\u0027s message content to the page in real time, with no page refresh required. gMessenger also includes custom authentication with three different permissions levels.",
                "ends_at": null,
                "starts_at": {
                    "day": 1,
                    "month": 3,
                    "year": 2015
                },
                "title": "gMessenger",
                "url": "http://gmessenger.herokuapp.com/"
            },
            {
                "description": "A task and project management responsive web app utilizing Ruby on Rails - CSS and HTML",
                "ends_at": null,
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2015
                },
                "title": "Taskly",
                "url": "https://hidden-coast-7204.herokuapp.com/"
            },
            {
                "description": "Injection molded residential and commercial wall mounts for iPads and iPods. This stylish flush wall mounted solution is meant to be used in conjunction with any Home Automation System.",
                "ends_at": null,
                "starts_at": {
                    "day": 1,
                    "month": 5,
                    "year": 2013
                },
                "title": "Simple Wall Mount",
                "url": "http://www.simplewallmount.com"
            },
            {
                "description": "Overwatch Safety Systems is developing an advanced warning and information distribution system to assist law enforcement and first responders with active shooter situations in public and private venues. The system utilizes modern sonic detection algorithms to sense and announce the position of active threats to people and property. This technology is also being designed as a hi-tech electronic deterrent for high profile or vulnerable venues.",
                "ends_at": null,
                "starts_at": null,
                "title": "Overwatch Safety Systems",
                "url": null
            }
        ],
        "accomplishment_publications": [],
        "accomplishment_test_scores": [],
        "activities": [
            {
                "activity_status": "Shared by John Marty",
                "link": "https://www.linkedin.com/posts/johnrmarty_financialfreedom-realestate-technology-activity-6940294635743301632-rsLo",
                "title": "Yesterday I toured a $1.2M property in California that has a large 13K sq ft lot with two homes on it. After 5 minutes of being on-site I\u2026"
            }
        ],
        "articles": [],
        "background_cover_image_url": "https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647\u0026v=beta\u0026t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU",
        "certifications": [
            {
                "authority": "Scaled Agile, Inc.",
                "display_source": null,
                "ends_at": null,
                "license_number": null,
                "name": "SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean Practices in the SAFe Enterprise)",
                "starts_at": null,
                "url": null
            },
            {
                "authority": "Scrum Alliance",
                "display_source": null,
                "ends_at": null,
                "license_number": null,
                "name": "SCRUM Alliance Certified Product Owner",
                "starts_at": null,
                "url": null
            },
            {
                "authority": "Scaled Agile, Inc.",
                "display_source": null,
                "ends_at": null,
                "license_number": null,
                "name": "Scaled Agile Framework PM/PO",
                "starts_at": null,
                "url": null
            }
        ],
        "city": "Seattle",
        "connections": 500,
        "country": "US",
        "country_full_name": "United States of America",
        "education": [
            {
                "activities_and_societies": null,
                "degree_name": "Master of Business Administration (MBA)",
                "description": null,
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 2015
                },
                "field_of_study": "Finance + Economics",
                "grade": null,
                "logo_url": "https://media.licdn.com/dms/image/C560BAQGVi9eAHgWxFw/company-logo_100_100/0/1673448029676?e=2147483647\u0026v=beta\u0026t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE",
                "school": "University of Colorado Denver",
                "school_linkedin_profile_url": "https://www.linkedin.com/school/university-of-colorado-denver/",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2013
                }
            },
            {
                "activities_and_societies": null,
                "degree_name": null,
                "description": "rails, ruby, rspec, capybara, bootstrap, css, html, api integration, Jquery, Javascript",
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 2015
                },
                "field_of_study": "School of Software Development",
                "grade": null,
                "logo_url": "https://media.licdn.com/dms/image/C560BAQFKNxOZ4X0g8Q/company-logo_100_100/0/1670610916338?e=2147483647\u0026v=beta\u0026t=t7ImfhmsuIJ7HJGHEbPJ2suxdslKhzp9v-5h9_G4sWE",
                "school": "Galvanize Inc",
                "school_linkedin_profile_url": "https://www.linkedin.com/school/galvanize-it/",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2015
                }
            },
            {
                "activities_and_societies": null,
                "degree_name": "BA",
                "description": null,
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 2005
                },
                "field_of_study": "Business",
                "grade": null,
                "logo_url": "https://media.licdn.com/dms/image/C4D0BAQGs5hZ3ROf-iw/company-logo_100_100/0/1519856111543?e=2147483647\u0026v=beta\u0026t=62k4mEoRdeQf4C6AF12Z05_t6i1VgNk50jr7RHkEsf8",
                "school": "Fort Lewis College",
                "school_linkedin_profile_url": "https://www.linkedin.com/school/fort-lewis-college/",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 1999
                }
            },
            {
                "activities_and_societies": null,
                "degree_name": "Japanese Language and Literature",
                "description": null,
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 2002
                },
                "field_of_study": null,
                "grade": null,
                "logo_url": null,
                "school": "Yamasa Institute Okazaki Japan",
                "school_linkedin_profile_url": null,
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2002
                }
            },
            {
                "activities_and_societies": null,
                "degree_name": null,
                "description": null,
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 2000
                },
                "field_of_study": "Spanish Language and Literature",
                "grade": null,
                "logo_url": null,
                "school": "Inter American University of Puerto Rico",
                "school_linkedin_profile_url": "https://www.linkedin.com/school/inter-american-university-of-puerto-rico/",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2000
                }
            },
            {
                "activities_and_societies": null,
                "degree_name": "High School",
                "description": null,
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 1999
                },
                "field_of_study": null,
                "grade": null,
                "logo_url": null,
                "school": "Western Reserve Academy",
                "school_linkedin_profile_url": null,
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 1996
                }
            }
        ],
        "experiences": [
            {
                "company": "Freedom Fund Real Estate",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/freedomfund",
                "description": "Our mission is to provide everyday people seeking financial freedom long before the age of 65 with the ability to invest in high yield, short-term real estate investments that were only accessible in the past for a select few wealthy individuals. Each of our single family rehab projects require a minimum investment contribution of only $10K, we have simple terms, no multi-year hold periods, and no fees. With our unique model investors can log into our easy to use website, select the projects that they want to invest in, and get realtime updates on the status of their investments.\n\nWebsite: https://www.freedomfundinvestments.com/home",
                "ends_at": null,
                "location": null,
                "logo_url": "https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647\u0026v=beta\u0026t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s",
                "starts_at": {
                    "day": 1,
                    "month": 8,
                    "year": 2021
                },
                "title": "Co-Founder"
            },
            {
                "company": "Mindset Reset Podcast",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/mindset-reset-podcast",
                "description": "We dive into the mindsets of the world\u2019s foremost thought leaders and turn them into actionable insights so that others can discover greater happiness, success, and fulfillment.\n\nhttps://podcasts.apple.com/us/podcast/mindset-reset/id1553212607",
                "ends_at": null,
                "location": "Denver, Colorado, United States",
                "logo_url": "https://media.licdn.com/dms/image/C560BAQF9QJVQm3SOvA/company-logo_100_100/0/1614527476576?e=2147483647\u0026v=beta\u0026t=m3tx83nMN-E3XQFoJG0Wmch8U4qKnJ9i--5NSAfffC0",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2021
                },
                "title": "Founder"
            },
            {
                "company": "Product School",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/product-school",
                "description": "Product School is a global leader in Product Management training with a community of over one million product professionals. As a featured speaker, I help inspire the next generation of Product Managers to create innovative products and apply best practices in their work.",
                "ends_at": {
                    "day": 31,
                    "month": 12,
                    "year": 2020
                },
                "location": "Seattle, Washington, United States",
                "logo_url": "https://media.licdn.com/dms/image/C4E0BAQEKULb2pMnazw/company-logo_100_100/0/1657091674586?e=2147483647\u0026v=beta\u0026t=vgcwRvTFf1v-AxyFXfFuEm07g8Nlzsha12E6-aBj6lk",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2020
                },
                "title": "Featured Speaker"
            },
            {
                "company": "Project 1B",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/project-1b",
                "description": "The mission of Project 1B is to help 1 Billion people around the world maximize their sense of meaning so that they can lead more fulfilling lives. We do this through exposing the truth about success and happiness through the Mindset Reset Podcast, corporate training, youth education programs, group coaching, and investments in tech startups aligned with our mission.\n\nThe word success is widely understood as the attainment of financial gain, but somewhere along the lines we began believing that money = happiness, self worth, and meaning even though money has nothing to do with these things. Because of this twisted equation, young adults often make career decisions that solely maximize earning potential. And Ironically, if they manage to achieve society\u2019s definition of success, It often leaves many with a sense of meaninglessness.\n\nIf you want to live a meaningful life chase the word meaning as opposed to the word success - this simple shift in mindset will lead to a more authentic set of questions about the direction you should take your life.",
                "ends_at": null,
                "location": "Denver, Colorado, United States",
                "logo_url": "https://media.licdn.com/dms/image/C560BAQFG_MrwBC_iZg/company-logo_100_100/0/1594610187483?e=2147483647\u0026v=beta\u0026t=7NNWG1ZclbNsUW0k0PuD-v5xTmfpIcthOmHCDyMwWMk",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2020
                },
                "title": "Founder"
            },
            {
                "company": "YouTube",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/youtube",
                "description": "Mission: to help others land their dream jobs at a top tech companies that aligns with their passions.",
                "ends_at": null,
                "location": "Greater Seattle Area",
                "logo_url": "https://media.licdn.com/dms/image/C4D0BAQEfoRsyU4yUzg/company-logo_100_100/0/1631053379295?e=2147483647\u0026v=beta\u0026t=CmnUj5LeO5Yi-nA9xLgEYBPU5eZdLrPBG2qXmPhhoe4",
                "starts_at": {
                    "day": 1,
                    "month": 2,
                    "year": 2019
                },
                "title": "YouTube Content Creator - \"Tech Careers for Non-Engineers\""
            },
            {
                "company": "YouTube",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/youtube",
                "description": null,
                "ends_at": null,
                "location": "Seattle, Washington",
                "logo_url": "https://media.licdn.com/dms/image/C4D0BAQEfoRsyU4yUzg/company-logo_100_100/0/1631053379295?e=2147483647\u0026v=beta\u0026t=CmnUj5LeO5Yi-nA9xLgEYBPU5eZdLrPBG2qXmPhhoe4",
                "starts_at": {
                    "day": 1,
                    "month": 1,
                    "year": 2017
                },
                "title": "Youtube Content Creator - \"John Marty\""
            },
            {
                "company": "Amazon",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/amazon",
                "description": "I had a mix of roles at Amazon from Sr. PM to Sr. Manager of Product\nTwo years were spent on Marketplace Product Quality and 2 years in New Business Innovation",
                "ends_at": {
                    "day": 31,
                    "month": 3,
                    "year": 2021
                },
                "location": "Greater Seattle Area",
                "logo_url": "https://media.licdn.com/dms/image/C560BAQHTvZwCx4p2Qg/company-logo_100_100/0/1612205615891?e=2147483647\u0026v=beta\u0026t=PG9v_TmuSDxc9nAjnwxAFTWfFwhri5iJcJ4bcODhtPA",
                "starts_at": {
                    "day": 1,
                    "month": 3,
                    "year": 2017
                },
                "title": "Sr. Manager of Product"
            },
            {
                "company": "American Express",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/american-express",
                "description": null,
                "ends_at": {
                    "day": 31,
                    "month": 3,
                    "year": 2017
                },
                "location": "Phoenix, Arizona Area",
                "logo_url": "https://media.licdn.com/dms/image/C4D0BAQGRhsociEn4gQ/company-logo_100_100/0/1523269243842?e=2147483647\u0026v=beta\u0026t=SHRbiG3uqsCTfE1Gyd77tgJWtHAm4cYp-c6uILKTVNs",
                "starts_at": {
                    "day": 1,
                    "month": 7,
                    "year": 2015
                },
                "title": "Senior Global Product Manager"
            },
            {
                "company": "Mile High Automation, Inc.",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/mile-high-automation-inc-",
                "description": "Mile High Automation is a Smart Home Technology (Internet of Things) software and hardware development company. Our mission is to flawlessly develop and deliver impeccable software, hardware and system design for the high-end consumer market nationally and internationally. \n\n\u2022  Performed a short term change management engagement to lead a 12 member cross functional team through a major strategy and vision transition\n\u2022  Developed an international supply chain that increased profit margin by 30% on core products\n\u2022  Conceptualized, implemented, and rolled out a CRM that led to a 15% higher month over month close rate; trained sales team on newly created key performance indicators to maximize growth\n\u2022  Developed, implemented and oversaw a training process that scaled to 180+ national subcontractors\n\u2022  Translated user stories into detailed product requirements documents that the software development team used to build new features and functionality \n\u2022  Developed benchmarks for customer service, sales, and traffic conversion to maximize profit",
                "ends_at": {
                    "day": 31,
                    "month": 7,
                    "year": 2014
                },
                "location": "Denver Colorado",
                "logo_url": "https://media.licdn.com/dms/image/C4E0BAQHofg3toK4P7A/company-logo_100_100/0/1519903210468?e=2147483647\u0026v=beta\u0026t=vasirOnrmfFkQru9S8JBNtci00COt_s9x2AOexxqd-8",
                "starts_at": {
                    "day": 1,
                    "month": 3,
                    "year": 2014
                },
                "title": "Sr. Product Manager"
            },
            {
                "company": "EOS Controls",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/eos-controls",
                "description": "A Smart Home Technology (Internet of Things) software and hardware development company specializing in the mid to high-end condominium market in the United States and South America. \nEOS Controls supports the advancement of affordable and easy to user smart home technology through a network of non-traditional sales channels of architects, designers, and contractors. \n\n\u2022  Coordinated engineering, design, and marketing strategy for the launch of 6 iOS apps\n\u2022  Led a 5 member product team of engineers; conducted daily stand-ups and weekly design review meetings\n\u2022  Managed and prioritized product backlog for development Sprints as well as tested products before release\n\u2022  Effectively placed products through non-traditional distribution channels by identifying and developing relationships with over 100 national and international builders, architects, and designers",
                "ends_at": {
                    "day": 31,
                    "month": 5,
                    "year": 2014
                },
                "location": "Miami, Florida",
                "logo_url": "https://media.licdn.com/dms/image/C560BAQFV1hvbuwyU-A/company-logo_100_100/0/1519867781218?e=2147483647\u0026v=beta\u0026t=s5UGQj-N-5VatokXj3YN6IxOPmKpUZeetC5OZH-B-xU",
                "starts_at": {
                    "day": 1,
                    "month": 2,
                    "year": 2012
                },
                "title": "Founder/ Chief Operating Officer"
            },
            {
                "company": "Axxis Audio",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/axxis-audio",
                "description": "Specializing in Smart Home Technology - Home Automation, Internet of Things\n\n\u2022  Raised $10,000 in investment to develop a home theater and home automation sales and installation business that grew to multi-million dollar sales (sold the company in 2011)\n\u2022  Developed mission-centric training, responsibility, and accountability framework \n\u2022  10 Direct Reports\n\u2022  Responsible for resource planning, scheduling, and project management \n\u2022  Filled the role of HR and developed a team building program for 10 direct reports, that included formal training, personal and professional peer support, mentoring and professional development; resulting in 20% higher retention rate and improved trust and communication\n\u2022  Deployed an ERP Solution in 2007 that unified 5 departments and provided a central reporting and accountability framework for a 23% employees productivity gain\n\u2022  Handled acquisition of 2nd largest competitor Cobalt Automation",
                "ends_at": {
                    "day": 31,
                    "month": 1,
                    "year": 2012
                },
                "location": "Durango Colorado",
                "logo_url": "https://media.licdn.com/dms/image/C560BAQHI-DLifzJs9Q/company-logo_100_100/0/1519868629336?e=2147483647\u0026v=beta\u0026t=l1Sk5NQO2Mtpo7HpppRkMhogjVXCwx5yxIxhcwUpNuc",
                "starts_at": {
                    "day": 1,
                    "month": 11,
                    "year": 2002
                },
                "title": "President/Founder"
            }
        ],
        "first_name": "John",
        "follower_count": null,
        "full_name": "John Marty",
        "groups": [],
        "headline": "Financial Freedom through Real Estate - LinkedIn Top Voice",
        "languages": [
            "English",
            "Spanish",
            "Japanese"
        ],
        "last_name": "Marty",
        "occupation": "Co-Founder at Freedom Fund Real Estate",
        "people_also_viewed": [],
        "profile_pic_url": "https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647\u0026v=beta\u0026t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI",
        "public_identifier": "johnrmarty",
        "recommendations": [
            "Rebecca Canfield\n\n      \n          \n          \n\n\n\n              \n                \n        \n              \n  \n\n      \n          John Marty is a genius at his craft. He is skilled in the art of making people feel empowered to seek out roles that they are qualified for, ask for salaries that they deserve, and creates a kind of pay it forward lifestyle. John helps you to get to places that you only thought were possible for other people. Anyone that is fortunate enough to learn from John should consider themselves extremely lucky. I know I do. ",
            "Zoe Sanoff\n\n      \n          \n          \n\n\n\n              \n                \n        \n              \n  \n\n      \n          John is so focused on helping guide you through an interview process not just for Amazon but on interviewing in general.  I\u0027ve generally done well at interviewing, my skills are top notch now.  John is so focused on on his clients and really goes above and beyond.  John is genuine, knowledgeable, well spoken and non-judgemental.  He is so encouraging, so positive and really easy to talk to.  Thank you John!"
        ],
        "similarly_named_profiles": [
            {
                "link": "https://www.linkedin.com/in/john-martinez-90384a229",
                "location": "San Antonio, TX",
                "name": "John Martinez",
                "summary": "Owner of Fight or Flight Medical Consultants, LLC  , Owner Marty\u2019s Hardwood Works"
            },
            {
                "link": "https://www.linkedin.com/in/senatormarty",
                "location": "St Paul, MN",
                "name": "John Marty",
                "summary": null
            },
            {
                "link": "https://www.linkedin.com/in/johnmarty",
                "location": "Orlando, FL",
                "name": "John Marty",
                "summary": "Lead Software Engineer, Commerce at Disney Parks  \u0026 Resorts Digital"
            },
            {
                "link": "https://www.linkedin.com/in/john-marty-ba56b478",
                "location": "Sarver, PA",
                "name": "John Marty",
                "summary": "Podiatrist at Ankle and Foot care inc"
            }
        ],
        "state": "Washington",
        "summary": "Most people go through life lost, disengaged, and unhappy at work and in their lives - I\u0027m on a mission to solve that.\n\nI spent 10 years as the founder of Axxis Audio, an electronics company that grew to multi-million dollar sales, which I sold in 2012. At that time, I funneled my earnings into the creation of an Internet of Things company, but numerous factors lead to its demise after 2 hard fought years. \n\nAt 31, I was penny-less, had a baby on the way, and had zero job prospects (despite applying to 150 companies). My desperate situation led me to take a job at Best Buy for $12 an hour while reinventing myself through the completion of an MBA at the University of Colorado, and a 6-month software development boot camp. \n\nAfter graduation, I landed at American Express as a Senior Product Manager and then got poached by Amazon in 2017 (because of my LinkedIn profile). My journey has led to a deep sense of perspective, humility, and purpose that I draw on to help others find clarity, meaning, and happiness in their careers and lives. \n\nCheck out my website for details on my Mindset Reset Podcast, Public Speaking, Consulting, or my free 40 page LinkedIn guide\n\nhttp://www.johnraphaelmarty.com/\n\nFAQ\u0027s\n\nQ: Can you speak at my Company, University, event or podcast?\nA: I\u0027d love to! I\u0027ve shared my message on the future of employment, breaking into big tech, and my personal story of reinventing myself and discovering my sense of purpose (and how you can too!).\n\n\u2611\ufe0f  YouTube Channel #1 (John Marty) : http://www.youtube.com/c/JohnMarty-uncommon\n\u2611\ufe0f  YouTube Channel #2 (Tech Careers for non-engineers: https://www.youtube.com/channel/UC900gMMPLwRGGXSTW1gdZHA\n\nFUN FACTS:\n\u2611\ufe0f I am an Avid cyclist and runner, and I just started learning to skateboard a half-pipe.\n\u2611\ufe0f Into the Enneagram? - I\u0027m a #3 (The Achiever)\n\nLETS CONNECT:\n\u2611\ufe0f Email: [email protected] (don\u0027t forget that \"R\"....The other guy gets my emails all the time)",
        "volunteer_work": []
    }
}
Key Description Example
linkedin_profile_url
LinkedIn Profile URL of the person that most closely matches the role
"https://www.linkedin.com/in/senatormarty"
profile See PersonEndpointResponse object

PersonEndpointResponse

Key Description Example
public_identifier
The vanity identifier of the public LinkedIn profile.
The vanity identifier comes after the /in/ part of the LinkedIn Profile URL
in the following format: https://www.linkedin.com/in/<public_identifier>
"johnrmarty"
profile_pic_url
A temporary link to the user's profile picture that is valid for 30 minutes.
The temporal nature of the link is by design to prevent having Proxycurl be the mirror for the images.
The developer is expected to handle these images by downloading the image and re-hosting the image.
See this post for context.
Some profile pictures might be of the standard LinkedIn's profile picture placeholder. It is so because. See this post for context.
"https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647\u0026v=beta\u0026t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI"
background_cover_image_url
A temporary link to the user's background cover picture
that is valid for 30 minutes.
The temporal nature of the link is by design to prevent
having Proxycurl be the mirror for the images.
The developer is expected to handle these images
by downloading the image and re-hosting the image.
See this post for context.
"https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647\u0026v=beta\u0026t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU"
first_name
First name of the user.
"John"
last_name
Last name of the user.
"Marty"
full_name
Full name of the user (first_name + last_name)
"John Marty"
follower_count
Follower count for this profile
null
occupation
The title and company name of the user's current employment.
"Co-Founder at Freedom Fund Real Estate"
headline
The tagline written by the user for his profile.
"Financial Freedom through Real Estate - LinkedIn Top Voice"
summary
A blurb (longer than the tagline) written by the user for his profile.
"Most people go through life lost, disengaged, and unhappy at work and in their lives - I\u0027m on a mission to solve that.\n\nI spent 10 years as the founder of Axxis Audio, an electronics company that grew to multi-million dollar sales, which I sold in 2012. At that time, I funneled my earnings into the creation of an Internet of Things company, but numerous factors lead to its demise after 2 hard fought years. \n\nAt 31, I was penny-less, had a baby on the way, and had zero job prospects (despite applying to 150 companies). My desperate situation led me to take a job at Best Buy for $12 an hour while reinventing myself through the completion of an MBA at the University of Colorado, and a 6-month software development boot camp. \n\nAfter graduation, I landed at American Express as a Senior Product Manager and then got poached by Amazon in 2017 (because of my LinkedIn profile). My journey has led to a deep sense of perspective, humility, and purpose that I draw on to help others find clarity, meaning, and happiness in their careers and lives. \n\nCheck out my website for details on my Mindset Reset Podcast, Public Speaking, Consulting, or my free 40 page LinkedIn guide\n\nhttp://www.johnraphaelmarty.com/\n\nFAQ\u0027s\n\nQ: Can you speak at my Company, University, event or podcast?\nA: I\u0027d love to! I\u0027ve shared my message on the future of employment, breaking into big tech, and my personal story of reinventing myself and discovering my sense of purpose (and how you can too!).\n\n\u2611\ufe0f YouTube Channel #1 (John Marty) : http://www.youtube.com/c/JohnMarty-uncommon\n\u2611\ufe0f YouTube Channel #2 (Tech Careers for non-engineers: https://www.youtube.com/channel/UC900gMMPLwRGGXSTW1gdZHA\n\nFUN FACTS:\n\u2611\ufe0f I am an Avid cyclist and runner, and I just started learning to skateboard a half-pipe.\n\u2611\ufe0f Into the Enneagram? - I\u0027m a #3 (The Achiever)\n\nLETS CONNECT:\n\u2611\ufe0f Email: [email protected] (don\u0027t forget that \"R\"....The other guy gets my emails all the time)"
country
The user's country of residence depicted by
a 2-letter country code (ISO 3166-1 alpha-2).
"US"
country_full_name
The user's country of residence, in English words.
"United States of America"
city
The city that the user is living at.
"Seattle"
state
The state that the user is living at.
"Washington"
experiences
The user's list of historic work experiences.
See Experience object
education
The user's list of education background.
See Education object
languages
A list of languages that the user claims to be familiar with,
and has added to his/her profile.
Do note that we do not have the proficiency level as
that data point is not available on a public LinkedIn profile.
["English", "Chinese", "Japanese"]
accomplishment_organisations
List of noteworthy organizations that this user is part of.
See AccomplishmentOrg object
accomplishment_publications
List of noteworthy publications that this user has partook in.
See Publication object
accomplishment_honors_awards
List of noteworthy honours and awards that this user has won.
See HonourAward object
accomplishment_patents
List of noteworthy patents won by this user.
See Patent object
accomplishment_courses
List of noteworthy courses partook by this user.
See Course object
accomplishment_projects
List of noteworthy projects undertaken by this user.
See Project object
accomplishment_test_scores
List of noteworthy test scores accomplished by this user.
See TestScore object
volunteer_work
List of historic volunteer work experiences.
See VolunteeringExperience object
certifications
List of noteworthy certifications accomplished by this user.
See Certification object
connections
Total count of LinkedIn connections.
500
people_also_viewed
A list of other LinkedIn profiles closely related to this user.
See PeopleAlsoViewed object
recommendations
List of recommendations made by other users about this profile.
["Professional and dedicated approach towards clients and collegues."]
activities
A list of LinkedIn status activities.
See Activity object
similarly_named_profiles
A list of other LinkedIn profiles with similar names.
See SimilarProfile object
articles
A list of content-based articles posted by this user.
See Article object
groups
A list of LinkedIn groups that this user is a part of.",
See PersonGroup object
inferred_salary
A salary range inferred from the user's current job title and company.
See InferredSalary object
gender
Gender of the user.
"male"
birth_date
Birth date of the user.
See Date object
industry
Industry that the user works in.
"government administration"
extra
A bundle of extra data on this user.
See PersonExtra object
interests
A list of interests that the user has.
["education", "health", "human rights"]
personal_emails
A list of personal emails associated with this user.
["[email protected]", "[email protected]", "cde@@outlook.com"]
personal_numbers
A list of personal mobile phone numbers associated with this user.
["+6512345678", "+6285123450953", "+6502300340"]

Experience

Key Description Example
starts_at
A Date object
See Date object
ends_at
null
company
The company's display name.
"Freedom Fund Real Estate"
company_linkedin_profile_url
The company's profile URL.
If present, could be used with
Company Profile Endpoint for more info.
"https://www.linkedin.com/company/freedomfund"
title
"Co-Founder"
description
"Our mission is to provide everyday people seeking financial freedom long before the age of 65 with the ability to invest in high yield, short-term real estate investments that were only accessible in the past for a select few wealthy individuals. Each of our single family rehab projects require a minimum investment contribution of only $10K, we have simple terms, no multi-year hold periods, and no fees. With our unique model investors can log into our easy to use website, select the projects that they want to invest in, and get realtime updates on the status of their investments.\n\nWebsite: https://www.freedomfundinvestments.com/home"
location
null
logo_url
URL of the logo of the organisation.
"https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647\u0026v=beta\u0026t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s"

Date

Key Description Example
day
1
month
8
year
2023

Education

Key Description Example
starts_at
{"day": 1, "month": 1, "year": 2013}
ends_at
{"day": 31, "month": 12, "year": 2015}
field_of_study
"Finance + Economics"
degree_name
"Master of Business Administration (MBA)"
school
"University of Colorado Denver"
school_linkedin_profile_url
"https://www.linkedin.com/school/university-of-colorado-denver/"
description
null
logo_url
"https://media.licdn.com/dms/image/C560BAQGVi9eAHgWxFw/company-logo_100_100/0/1673448029676?e=2147483647\u0026v=beta\u0026t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE"
grade
null
activities_and_societies
null

AccomplishmentOrg

Key Description Example
starts_at
{"day": 1, "month": 1, "year": 2012}
ends_at
{"day": 1, "month": 8, "year": 2016}
org_name
"Microsoft"
title
"Software Developer"
description
null

Publication

Key Description Example
name
Name of the publication.
"Nobel Peace Prize"
publisher
The publishing organisation body.
"Acme Corp"
published_on
Date of publication.
See Date object
description
Description of the publication.
"\n Lorem ipsum dolor sit amet, consectetur adipiscing elit\n "
url
URL of the publication.
"https://example.com"

HonourAward

Key Description Example
title
Title of the honour/award.
"Nobel Peace Prize"
issuer
The organisation body issuing this honour/award.
"Acme Corp"
issued_on
Date that this honour/awared was issued.
See Date object
description
Description of the honour/award.
"\n Lorem ipsum dolor sit amet, consectetur adipiscing elit\n "

Patent

Key Description Example
title
Title of the patent.
"The art of war"
issuer
The organisation body that issued the patent.
"Acme Corp"
issued_on
Date of patent issuance.
See Date object
description
Description of the patent.
"\n Lorem ipsum dolor sit amet, consectetur adipiscing elit\n "
application_number
Numerical representation that identifies the patent.
"123"
patent_number
Application number of the patent.
"123"
url
null

Course

Key Description Example
name
Name of the course
"The course about ABCs"
number
The numerical representation of the course
"123"

Project

Key Description Example
starts_at
A Date object
See Date object
ends_at
null
title
Name of the project that has been or is currently being worked on.
"gMessenger"
description
Description of the project.
"gMessenger was built using Ruby on Rails, and the Bootstrap HTML, CSS, and JavaScript framework. It uses a Websocket-Rails integration to post a user\u0027s message content to the page in real time, with no page refresh required. gMessenger also includes custom authentication with three different permissions levels."
url
A web location related to the project.
"http://gmessenger.herokuapp.com/"

TestScore

Key Description Example
name
Title of the course for which test score was derived from.
"CS1101S"
score
Test score
"A"
date_on
Date of test was assesed.
See Date object
description
Description of the test score.
"Nailed it without studying."

VolunteeringExperience

Key Description Example
starts_at
{"day": 1, "month": 1, "year": 2012}
ends_at
{"day": 1, "month": 8, "year": 2016}
title
Name of volunteer activity.
"Surveyor"
cause
"To help the world"
company
The company's display name.
"Microsoft"
company_linkedin_profile_url
The company's profile URL.
If present, could be used with
Company Profile Endpoint for more info.
"https://www.linkedin.com/company/microsoft"
description
null
logo_url
URL of the logo of the organisation.
null

Certification

Key Description Example
starts_at
null
ends_at
null
name
Name of the course or program.
"SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean Practices in the SAFe Enterprise)"
license_number
null
display_source
null
authority
The organisation body issuing this certificate.
"Scaled Agile, Inc."
url
null

PeopleAlsoViewed

Key Description Example
link
URL of the profile.
Useable with Person profile endpoint
"https://www.linkedin.com/in/johndoe"
name
"John Doe"
summary
"Software Engineer at Google"
location
"Singapore"

Activity

Key Description Example
title
"Yesterday I toured a $1.2M property in California that has a large 13K sq ft lot with two homes on it. After 5 minutes of being on-site I\u2026"
link
"https://www.linkedin.com/posts/johnrmarty_financialfreedom-realestate-technology-activity-6940294635743301632-rsLo"
activity_status
"Shared by John Marty"

SimilarProfile

Key Description Example
name
"John Martinez"
link
"https://www.linkedin.com/in/john-martinez-90384a229"
summary
"Owner of Fight or Flight Medical Consultants, LLC , Owner Marty\u2019s Hardwood Works"
location
"San Antonio, TX"

Article

Key Description Example
title
"Manufacturing opportunity"
link
"https://www.linkedin.com/pulse/manufacturing-opportunity-bill-gates/"
published_date
A Date object
See Date object
author
"Bill Gates"
image_url
"https://media-exp1.licdn.com/dms/image/C4E12AQFftuPi0UiqWA/article-cover_image-shrink_720_1280/0/1574801149114?e=1640822400\u0026v=beta\u0026t=ZAe3ERmQCM8QHGmRPS2LJ-C76GD5PR7FBHMVL4Z6iVg"

PersonGroup

Key Description Example
profile_pic_url
The URL to the profile picture of this LinkedIn Group
"https://media-exp1.licdn.com/dms/image/C4D07AQG9IK9V0pk3mQ/group-logo_image-shrink_92x92/0/1631371531293?e=1642060800\u0026v=beta\u0026t=UK1tfIppWa-Nx7k9whmm5f9XdZoBdJhApf9N3ke3204"
name
Name of LinkedIn group for which this user is in
"Hadoop Users"
url
URL to the LinkedIn Group
"https://www.linkedin.com/groups/988957"

InferredSalary

Key Description Example
min
35000
max
45000

PersonExtra

Key Description Example
github_profile_id
This profile's Github account.
"github-username"
facebook_profile_id
This profile's Facebook account.
"facebook-username"
twitter_profile_id
This profile's twitter account.
"twitter-username"

Response Headers

Header Key Description Example
X-Proxycurl-Credit-Cost Total cost of credits for this API call 3

Person Profile Endpoint

GET /proxycurl/api/v2/linkedin

Cost: 1 credit / successful request. (Extra charges might be incurred if premium optional parameters are used. Please read the description of the parameters that you intend to use)

Get structured data of a Personal Profile

curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/v2/linkedin' \
    --data-urlencode 'url=https://www.linkedin.com/in/johnrmarty/' \
    --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'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/v2/linkedin'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'url': 'https://www.linkedin.com/in/johnrmarty/',
    'fallback_to_cache': 'on-error',
    'use_cache': 'if-present',
    'skills': 'include',
    'inferred_salary': 'include',
    'personal_email': 'include',
    'personal_contact_number': 'include',
    'twitter_profile_id': 'include',
    'facebook_profile_id': 'include',
    'github_profile_id': 'include',
    'extra': 'include',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
url yes
URL of the LinkedIn Profile to crawl.

URL should be in the format of https://www.linkedin.com/in/<public-identifier>
https://www.linkedin.com/in/johnrmarty/
fallback_to_cache yes
Tweaks the fallback behavior if an error arises from fetching a fresh profile.

This parameter accepts the following values:
* on-error (default value) - Fallback to reading the profile from cache if an error arises.
* never - Do not ever read profile from cache.
on-error
use_cache no
if-present The default behavior. Fetches profile from cache regardless of age of profile. If profile is not available in cache, API will attempt to source profile externally.

if-recent API will make a best effort to return a fresh profile no older than 29 days.Costs an extra 1 credit on top of the cost of the base endpoint.
if-present
skills no
Include skills data from external sources.

This parameter accepts the following values:
- exclude (default value) - Does not provide skills data field.
- include - Append skills data to the person profile object.
Costs an extra 1 credit on top of the cost of the base endpoint (if data is available).
include
inferred_salary no
Include inferred salary range from external sources.

This parameter accepts the following values:
- exclude (default value) - Does not provide inferred salary data field.
- include - Append inferred salary range data to the person profile object.
Costs an extra 1 credit on top of the cost of the base endpoint (if data is available).
include
personal_email no
Enriches the Person Profile with personal emails from external sources.

This parameter accepts the following values:
- exclude (default value) - Does not provide personal emails data field.
- include - Append personal emails data to the person profile object.
Costs an extra 1 credit per email returned on top of the cost of the base endpoint (if data is available).
include
personal_contact_number no
Enriches the Person Profile with personal numbers from external sources.

This parameter accepts the following values:
- exclude (default value) - Does not provide personal numbers data field.
- include - Append personal numbers data to the person profile object.
Costs an extra 1 credit per email returned on top of the cost of the base endpoint (if data is available).
include
twitter_profile_id no
Enriches the Person Profile with Twitter Id from external sources.

This parameter accepts the following values:
- exclude (default value) - Does not provide Twitter Id data field.
- include - Append Twitter Id data to the person profile object.
Costs an extra 1 credit on top of the cost of the base endpoint (if data is available).
include
facebook_profile_id no
Enriches the Person Profile with Facebook Id from external sources.

This parameter accepts the following values:
- exclude (default value) - Does not provide Facebook Id data field.
- include - Append Facebook Id data to the person profile object.
Costs an extra 1 credit on top of the cost of the base endpoint (if data is available).
include
github_profile_id no
Enriches the Person Profile with Github Id from external sources.

This parameter accepts the following values:
- exclude (default value) - Does not provide Github Id data field.
- include - Append Github Id data to the person profile object.
Costs an extra 1 credit on top of the cost of the base endpoint (if data is available).
include
extra no
Enriches the Person Profile with extra details from external sources.
Extra details include gender, birth date, industry and interests.

This parameter accepts the following values:
- exclude (default value) - Does not provide extra data field.
- include - Append extra data to the person profile object.
Costs an extra 1 credit on top of the cost of the base endpoint (if data is available).
include

Response

{
    "accomplishment_courses": [],
    "accomplishment_honors_awards": [],
    "accomplishment_organisations": [],
    "accomplishment_patents": [],
    "accomplishment_projects": [
        {
            "description": "gMessenger was built using Ruby on Rails, and the Bootstrap HTML, CSS, and JavaScript framework. It uses a Websocket-Rails integration to post a user\u0027s message content to the page in real time, with no page refresh required. gMessenger also includes custom authentication with three different permissions levels.",
            "ends_at": null,
            "starts_at": {
                "day": 1,
                "month": 3,
                "year": 2015
            },
            "title": "gMessenger",
            "url": "http://gmessenger.herokuapp.com/"
        },
        {
            "description": "A task and project management responsive web app utilizing Ruby on Rails - CSS and HTML",
            "ends_at": null,
            "starts_at": {
                "day": 1,
                "month": 1,
                "year": 2015
            },
            "title": "Taskly",
            "url": "https://hidden-coast-7204.herokuapp.com/"
        },
        {
            "description": "Injection molded residential and commercial wall mounts for iPads and iPods. This stylish flush wall mounted solution is meant to be used in conjunction with any Home Automation System.",
            "ends_at": null,
            "starts_at": {
                "day": 1,
                "month": 5,
                "year": 2013
            },
            "title": "Simple Wall Mount",
            "url": "http://www.simplewallmount.com"
        },
        {
            "description": "Overwatch Safety Systems is developing an advanced warning and information distribution system to assist law enforcement and first responders with active shooter situations in public and private venues. The system utilizes modern sonic detection algorithms to sense and announce the position of active threats to people and property. This technology is also being designed as a hi-tech electronic deterrent for high profile or vulnerable venues.",
            "ends_at": null,
            "starts_at": null,
            "title": "Overwatch Safety Systems",
            "url": null
        }
    ],
    "accomplishment_publications": [],
    "accomplishment_test_scores": [],
    "activities": [
        {
            "activity_status": "Shared by John Marty",
            "link": "https://www.linkedin.com/posts/johnrmarty_financialfreedom-realestate-technology-activity-6940294635743301632-rsLo",
            "title": "Yesterday I toured a $1.2M property in California that has a large 13K sq ft lot with two homes on it. After 5 minutes of being on-site I\u2026"
        }
    ],
    "articles": [],
    "background_cover_image_url": "https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647\u0026v=beta\u0026t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU",
    "certifications": [
        {
            "authority": "Scaled Agile, Inc.",
            "display_source": null,
            "ends_at": null,
            "license_number": null,
            "name": "SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean Practices in the SAFe Enterprise)",
            "starts_at": null,
            "url": null
        },
        {
            "authority": "Scrum Alliance",
            "display_source": null,
            "ends_at": null,
            "license_number": null,
            "name": "SCRUM Alliance Certified Product Owner",
            "starts_at": null,
            "url": null
        },
        {
            "authority": "Scaled Agile, Inc.",
            "display_source": null,
            "ends_at": null,
            "license_number": null,
            "name": "Scaled Agile Framework PM/PO",
            "starts_at": null,
            "url": null
        }
    ],
    "city": "Seattle",
    "connections": 500,
    "country": "US",
    "country_full_name": "United States of America",
    "education": [
        {
            "activities_and_societies": null,
            "degree_name": "Master of Business Administration (MBA)",
            "description": null,
            "ends_at": {
                "day": 31,
                "month": 12,
                "year": 2015
            },
            "field_of_study": "Finance + Economics",
            "grade": null,
            "logo_url": "https://media.licdn.com/dms/image/C560BAQGVi9eAHgWxFw/company-logo_100_100/0/1673448029676?e=2147483647\u0026v=beta\u0026t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE",
            "school": "University of Colorado Denver",
            "school_linkedin_profile_url": "https://www.linkedin.com/school/university-of-colorado-denver/",
            "starts_at": {
                "day": 1,
                "month": 1,
                "year": 2013
            }
        },
        {
            "activities_and_societies": null,
            "degree_name": null,
            "description": "rails, ruby, rspec, capybara, bootstrap, css, html, api integration, Jquery, Javascript",
            "ends_at": {
                "day": 31,
                "month": 12,
                "year": 2015
            },
            "field_of_study": "School of Software Development",
            "grade": null,
            "logo_url": "https://media.licdn.com/dms/image/C560BAQFKNxOZ4X0g8Q/company-logo_100_100/0/1670610916338?e=2147483647\u0026v=beta\u0026t=t7ImfhmsuIJ7HJGHEbPJ2suxdslKhzp9v-5h9_G4sWE",
            "school": "Galvanize Inc",
            "school_linkedin_profile_url": "https://www.linkedin.com/school/galvanize-it/",
            "starts_at": {
                "day": 1,
                "month": 1,
                "year": 2015
            }
        },
        {
            "activities_and_societies": null,
            "degree_name": "BA",
            "description": null,
            "ends_at": {
                "day": 31,
                "month": 12,
                "year": 2005
            },
            "field_of_study": "Business",
            "grade": null,
            "logo_url": "https://media.licdn.com/dms/image/C4D0BAQGs5hZ3ROf-iw/company-logo_100_100/0/1519856111543?e=2147483647\u0026v=beta\u0026t=62k4mEoRdeQf4C6AF12Z05_t6i1VgNk50jr7RHkEsf8",
            "school": "Fort Lewis College",
            "school_linkedin_profile_url": "https://www.linkedin.com/school/fort-lewis-college/",
            "starts_at": {
                "day": 1,
                "month": 1,
                "year": 1999
            }
        },
        {
            "activities_and_societies": null,
            "degree_name": "Japanese Language and Literature",
            "description": null,
            "ends_at": {
                "day": 31,
                "month": 12,
                "year": 2002
            },
            "field_of_study": null,
            "grade": null,
            "logo_url": null,
            "school": "Yamasa Institute Okazaki Japan",
            "school_linkedin_profile_url": null,
            "starts_at": {
                "day": 1,
                "month": 1,
                "year": 2002
            }
        },
        {
            "activities_and_societies": null,
            "degree_name": null,
            "description": null,
            "ends_at": {
                "day": 31,
                "month": 12,
                "year": 2000
            },
            "field_of_study": "Spanish Language and Literature",
            "grade": null,
            "logo_url": null,
            "school": "Inter American University of Puerto Rico",
            "school_linkedin_profile_url": "https://www.linkedin.com/school/inter-american-university-of-puerto-rico/",
            "starts_at": {
                "day": 1,
                "month": 1,
                "year": 2000
            }
        },
        {
            "activities_and_societies": null,
            "degree_name": "High School",
            "description": null,
            "ends_at": {
                "day": 31,
                "month": 12,
                "year": 1999
            },
            "field_of_study": null,
            "grade": null,
            "logo_url": null,
            "school": "Western Reserve Academy",
            "school_linkedin_profile_url": null,
            "starts_at": {
                "day": 1,
                "month": 1,
                "year": 1996
            }
        }
    ],
    "experiences": [
        {
            "company": "Freedom Fund Real Estate",
            "company_linkedin_profile_url": "https://www.linkedin.com/company/freedomfund",
            "description": "Our mission is to provide everyday people seeking financial freedom long before the age of 65 with the ability to invest in high yield, short-term real estate investments that were only accessible in the past for a select few wealthy individuals. Each of our single family rehab projects require a minimum investment contribution of only $10K, we have simple terms, no multi-year hold periods, and no fees. With our unique model investors can log into our easy to use website, select the projects that they want to invest in, and get realtime updates on the status of their investments.\n\nWebsite: https://www.freedomfundinvestments.com/home",
            "ends_at": null,
            "location": null,
            "logo_url": "https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647\u0026v=beta\u0026t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s",
            "starts_at": {
                "day": 1,
                "month": 8,
                "year": 2021
            },
            "title": "Co-Founder"
        },
        {
            "company": "Mindset Reset Podcast",
            "company_linkedin_profile_url": "https://www.linkedin.com/company/mindset-reset-podcast",
            "description": "We dive into the mindsets of the world\u2019s foremost thought leaders and turn them into actionable insights so that others can discover greater happiness, success, and fulfillment.\n\nhttps://podcasts.apple.com/us/podcast/mindset-reset/id1553212607",
            "ends_at": null,
            "location": "Denver, Colorado, United States",
            "logo_url": "https://media.licdn.com/dms/image/C560BAQF9QJVQm3SOvA/company-logo_100_100/0/1614527476576?e=2147483647\u0026v=beta\u0026t=m3tx83nMN-E3XQFoJG0Wmch8U4qKnJ9i--5NSAfffC0",
            "starts_at": {
                "day": 1,
                "month": 1,
                "year": 2021
            },
            "title": "Founder"
        },
        {
            "company": "Product School",
            "company_linkedin_profile_url": "https://www.linkedin.com/company/product-school",
            "description": "Product School is a global leader in Product Management training with a community of over one million product professionals. As a featured speaker, I help inspire the next generation of Product Managers to create innovative products and apply best practices in their work.",
            "ends_at": {
                "day": 31,
                "month": 12,
                "year": 2020
            },
            "location": "Seattle, Washington, United States",
            "logo_url": "https://media.licdn.com/dms/image/C4E0BAQEKULb2pMnazw/company-logo_100_100/0/1657091674586?e=2147483647\u0026v=beta\u0026t=vgcwRvTFf1v-AxyFXfFuEm07g8Nlzsha12E6-aBj6lk",
            "starts_at": {
                "day": 1,
                "month": 1,
                "year": 2020
            },
            "title": "Featured Speaker"
        },
        {
            "company": "Project 1B",
            "company_linkedin_profile_url": "https://www.linkedin.com/company/project-1b",
            "description": "The mission of Project 1B is to help 1 Billion people around the world maximize their sense of meaning so that they can lead more fulfilling lives. We do this through exposing the truth about success and happiness through the Mindset Reset Podcast, corporate training, youth education programs, group coaching, and investments in tech startups aligned with our mission.\n\nThe word success is widely understood as the attainment of financial gain, but somewhere along the lines we began believing that money = happiness, self worth, and meaning even though money has nothing to do with these things. Because of this twisted equation, young adults often make career decisions that solely maximize earning potential. And Ironically, if they manage to achieve society\u2019s definition of success, It often leaves many with a sense of meaninglessness.\n\nIf you want to live a meaningful life chase the word meaning as opposed to the word success - this simple shift in mindset will lead to a more authentic set of questions about the direction you should take your life.",
            "ends_at": null,
            "location": "Denver, Colorado, United States",
            "logo_url": "https://media.licdn.com/dms/image/C560BAQFG_MrwBC_iZg/company-logo_100_100/0/1594610187483?e=2147483647\u0026v=beta\u0026t=7NNWG1ZclbNsUW0k0PuD-v5xTmfpIcthOmHCDyMwWMk",
            "starts_at": {
                "day": 1,
                "month": 1,
                "year": 2020
            },
            "title": "Founder"
        },
        {
            "company": "YouTube",
            "company_linkedin_profile_url": "https://www.linkedin.com/company/youtube",
            "description": "Mission: to help others land their dream jobs at a top tech companies that aligns with their passions.",
            "ends_at": null,
            "location": "Greater Seattle Area",
            "logo_url": "https://media.licdn.com/dms/image/C4D0BAQEfoRsyU4yUzg/company-logo_100_100/0/1631053379295?e=2147483647\u0026v=beta\u0026t=CmnUj5LeO5Yi-nA9xLgEYBPU5eZdLrPBG2qXmPhhoe4",
            "starts_at": {
                "day": 1,
                "month": 2,
                "year": 2019
            },
            "title": "YouTube Content Creator - \"Tech Careers for Non-Engineers\""
        },
        {
            "company": "YouTube",
            "company_linkedin_profile_url": "https://www.linkedin.com/company/youtube",
            "description": null,
            "ends_at": null,
            "location": "Seattle, Washington",
            "logo_url": "https://media.licdn.com/dms/image/C4D0BAQEfoRsyU4yUzg/company-logo_100_100/0/1631053379295?e=2147483647\u0026v=beta\u0026t=CmnUj5LeO5Yi-nA9xLgEYBPU5eZdLrPBG2qXmPhhoe4",
            "starts_at": {
                "day": 1,
                "month": 1,
                "year": 2017
            },
            "title": "Youtube Content Creator - \"John Marty\""
        },
        {
            "company": "Amazon",
            "company_linkedin_profile_url": "https://www.linkedin.com/company/amazon",
            "description": "I had a mix of roles at Amazon from Sr. PM to Sr. Manager of Product\nTwo years were spent on Marketplace Product Quality and 2 years in New Business Innovation",
            "ends_at": {
                "day": 31,
                "month": 3,
                "year": 2021
            },
            "location": "Greater Seattle Area",
            "logo_url": "https://media.licdn.com/dms/image/C560BAQHTvZwCx4p2Qg/company-logo_100_100/0/1612205615891?e=2147483647\u0026v=beta\u0026t=PG9v_TmuSDxc9nAjnwxAFTWfFwhri5iJcJ4bcODhtPA",
            "starts_at": {
                "day": 1,
                "month": 3,
                "year": 2017
            },
            "title": "Sr. Manager of Product"
        },
        {
            "company": "American Express",
            "company_linkedin_profile_url": "https://www.linkedin.com/company/american-express",
            "description": null,
            "ends_at": {
                "day": 31,
                "month": 3,
                "year": 2017
            },
            "location": "Phoenix, Arizona Area",
            "logo_url": "https://media.licdn.com/dms/image/C4D0BAQGRhsociEn4gQ/company-logo_100_100/0/1523269243842?e=2147483647\u0026v=beta\u0026t=SHRbiG3uqsCTfE1Gyd77tgJWtHAm4cYp-c6uILKTVNs",
            "starts_at": {
                "day": 1,
                "month": 7,
                "year": 2015
            },
            "title": "Senior Global Product Manager"
        },
        {
            "company": "Mile High Automation, Inc.",
            "company_linkedin_profile_url": "https://www.linkedin.com/company/mile-high-automation-inc-",
            "description": "Mile High Automation is a Smart Home Technology (Internet of Things) software and hardware development company. Our mission is to flawlessly develop and deliver impeccable software, hardware and system design for the high-end consumer market nationally and internationally. \n\n\u2022  Performed a short term change management engagement to lead a 12 member cross functional team through a major strategy and vision transition\n\u2022  Developed an international supply chain that increased profit margin by 30% on core products\n\u2022  Conceptualized, implemented, and rolled out a CRM that led to a 15% higher month over month close rate; trained sales team on newly created key performance indicators to maximize growth\n\u2022  Developed, implemented and oversaw a training process that scaled to 180+ national subcontractors\n\u2022  Translated user stories into detailed product requirements documents that the software development team used to build new features and functionality \n\u2022  Developed benchmarks for customer service, sales, and traffic conversion to maximize profit",
            "ends_at": {
                "day": 31,
                "month": 7,
                "year": 2014
            },
            "location": "Denver Colorado",
            "logo_url": "https://media.licdn.com/dms/image/C4E0BAQHofg3toK4P7A/company-logo_100_100/0/1519903210468?e=2147483647\u0026v=beta\u0026t=vasirOnrmfFkQru9S8JBNtci00COt_s9x2AOexxqd-8",
            "starts_at": {
                "day": 1,
                "month": 3,
                "year": 2014
            },
            "title": "Sr. Product Manager"
        },
        {
            "company": "EOS Controls",
            "company_linkedin_profile_url": "https://www.linkedin.com/company/eos-controls",
            "description": "A Smart Home Technology (Internet of Things) software and hardware development company specializing in the mid to high-end condominium market in the United States and South America. \nEOS Controls supports the advancement of affordable and easy to user smart home technology through a network of non-traditional sales channels of architects, designers, and contractors. \n\n\u2022  Coordinated engineering, design, and marketing strategy for the launch of 6 iOS apps\n\u2022  Led a 5 member product team of engineers; conducted daily stand-ups and weekly design review meetings\n\u2022  Managed and prioritized product backlog for development Sprints as well as tested products before release\n\u2022  Effectively placed products through non-traditional distribution channels by identifying and developing relationships with over 100 national and international builders, architects, and designers",
            "ends_at": {
                "day": 31,
                "month": 5,
                "year": 2014
            },
            "location": "Miami, Florida",
            "logo_url": "https://media.licdn.com/dms/image/C560BAQFV1hvbuwyU-A/company-logo_100_100/0/1519867781218?e=2147483647\u0026v=beta\u0026t=s5UGQj-N-5VatokXj3YN6IxOPmKpUZeetC5OZH-B-xU",
            "starts_at": {
                "day": 1,
                "month": 2,
                "year": 2012
            },
            "title": "Founder/ Chief Operating Officer"
        },
        {
            "company": "Axxis Audio",
            "company_linkedin_profile_url": "https://www.linkedin.com/company/axxis-audio",
            "description": "Specializing in Smart Home Technology - Home Automation, Internet of Things\n\n\u2022  Raised $10,000 in investment to develop a home theater and home automation sales and installation business that grew to multi-million dollar sales (sold the company in 2011)\n\u2022  Developed mission-centric training, responsibility, and accountability framework \n\u2022  10 Direct Reports\n\u2022  Responsible for resource planning, scheduling, and project management \n\u2022  Filled the role of HR and developed a team building program for 10 direct reports, that included formal training, personal and professional peer support, mentoring and professional development; resulting in 20% higher retention rate and improved trust and communication\n\u2022  Deployed an ERP Solution in 2007 that unified 5 departments and provided a central reporting and accountability framework for a 23% employees productivity gain\n\u2022  Handled acquisition of 2nd largest competitor Cobalt Automation",
            "ends_at": {
                "day": 31,
                "month": 1,
                "year": 2012
            },
            "location": "Durango Colorado",
            "logo_url": "https://media.licdn.com/dms/image/C560BAQHI-DLifzJs9Q/company-logo_100_100/0/1519868629336?e=2147483647\u0026v=beta\u0026t=l1Sk5NQO2Mtpo7HpppRkMhogjVXCwx5yxIxhcwUpNuc",
            "starts_at": {
                "day": 1,
                "month": 11,
                "year": 2002
            },
            "title": "President/Founder"
        }
    ],
    "first_name": "John",
    "follower_count": null,
    "full_name": "John Marty",
    "groups": [],
    "headline": "Financial Freedom through Real Estate - LinkedIn Top Voice",
    "languages": [
        "English",
        "Spanish",
        "Japanese"
    ],
    "last_name": "Marty",
    "occupation": "Co-Founder at Freedom Fund Real Estate",
    "people_also_viewed": [],
    "profile_pic_url": "https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647\u0026v=beta\u0026t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI",
    "public_identifier": "johnrmarty",
    "recommendations": [
        "Rebecca Canfield\n\n      \n          \n          \n\n\n\n              \n                \n        \n              \n  \n\n      \n          John Marty is a genius at his craft. He is skilled in the art of making people feel empowered to seek out roles that they are qualified for, ask for salaries that they deserve, and creates a kind of pay it forward lifestyle. John helps you to get to places that you only thought were possible for other people. Anyone that is fortunate enough to learn from John should consider themselves extremely lucky. I know I do. ",
        "Zoe Sanoff\n\n      \n          \n          \n\n\n\n              \n                \n        \n              \n  \n\n      \n          John is so focused on helping guide you through an interview process not just for Amazon but on interviewing in general.  I\u0027ve generally done well at interviewing, my skills are top notch now.  John is so focused on on his clients and really goes above and beyond.  John is genuine, knowledgeable, well spoken and non-judgemental.  He is so encouraging, so positive and really easy to talk to.  Thank you John!"
    ],
    "similarly_named_profiles": [
        {
            "link": "https://www.linkedin.com/in/john-martinez-90384a229",
            "location": "San Antonio, TX",
            "name": "John Martinez",
            "summary": "Owner of Fight or Flight Medical Consultants, LLC  , Owner Marty\u2019s Hardwood Works"
        },
        {
            "link": "https://www.linkedin.com/in/senatormarty",
            "location": "St Paul, MN",
            "name": "John Marty",
            "summary": null
        },
        {
            "link": "https://www.linkedin.com/in/johnmarty",
            "location": "Orlando, FL",
            "name": "John Marty",
            "summary": "Lead Software Engineer, Commerce at Disney Parks  \u0026 Resorts Digital"
        },
        {
            "link": "https://www.linkedin.com/in/john-marty-ba56b478",
            "location": "Sarver, PA",
            "name": "John Marty",
            "summary": "Podiatrist at Ankle and Foot care inc"
        }
    ],
    "state": "Washington",
    "summary": "Most people go through life lost, disengaged, and unhappy at work and in their lives - I\u0027m on a mission to solve that.\n\nI spent 10 years as the founder of Axxis Audio, an electronics company that grew to multi-million dollar sales, which I sold in 2012. At that time, I funneled my earnings into the creation of an Internet of Things company, but numerous factors lead to its demise after 2 hard fought years. \n\nAt 31, I was penny-less, had a baby on the way, and had zero job prospects (despite applying to 150 companies). My desperate situation led me to take a job at Best Buy for $12 an hour while reinventing myself through the completion of an MBA at the University of Colorado, and a 6-month software development boot camp. \n\nAfter graduation, I landed at American Express as a Senior Product Manager and then got poached by Amazon in 2017 (because of my LinkedIn profile). My journey has led to a deep sense of perspective, humility, and purpose that I draw on to help others find clarity, meaning, and happiness in their careers and lives. \n\nCheck out my website for details on my Mindset Reset Podcast, Public Speaking, Consulting, or my free 40 page LinkedIn guide\n\nhttp://www.johnraphaelmarty.com/\n\nFAQ\u0027s\n\nQ: Can you speak at my Company, University, event or podcast?\nA: I\u0027d love to! I\u0027ve shared my message on the future of employment, breaking into big tech, and my personal story of reinventing myself and discovering my sense of purpose (and how you can too!).\n\n\u2611\ufe0f  YouTube Channel #1 (John Marty) : http://www.youtube.com/c/JohnMarty-uncommon\n\u2611\ufe0f  YouTube Channel #2 (Tech Careers for non-engineers: https://www.youtube.com/channel/UC900gMMPLwRGGXSTW1gdZHA\n\nFUN FACTS:\n\u2611\ufe0f I am an Avid cyclist and runner, and I just started learning to skateboard a half-pipe.\n\u2611\ufe0f Into the Enneagram? - I\u0027m a #3 (The Achiever)\n\nLETS CONNECT:\n\u2611\ufe0f Email: [email protected] (don\u0027t forget that \"R\"....The other guy gets my emails all the time)",
    "volunteer_work": []
}
Key Description Example
public_identifier
The vanity identifier of the public LinkedIn profile.
The vanity identifier comes after the /in/ part of the LinkedIn Profile URL
in the following format: https://www.linkedin.com/in/<public_identifier>
"johnrmarty"
profile_pic_url
A temporary link to the user's profile picture that is valid for 30 minutes.
The temporal nature of the link is by design to prevent having Proxycurl be the mirror for the images.
The developer is expected to handle these images by downloading the image and re-hosting the image.
See this post for context.
Some profile pictures might be of the standard LinkedIn's profile picture placeholder. It is so because. See this post for context.
"https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647\u0026v=beta\u0026t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI"
background_cover_image_url
A temporary link to the user's background cover picture
that is valid for 30 minutes.
The temporal nature of the link is by design to prevent
having Proxycurl be the mirror for the images.
The developer is expected to handle these images
by downloading the image and re-hosting the image.
See this post for context.
"https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647\u0026v=beta\u0026t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU"
first_name
First name of the user.
"John"
last_name
Last name of the user.
"Marty"
full_name
Full name of the user (first_name + last_name)
"John Marty"
follower_count
Follower count for this profile
null
occupation
The title and company name of the user's current employment.
"Co-Founder at Freedom Fund Real Estate"
headline
The tagline written by the user for his profile.
"Financial Freedom through Real Estate - LinkedIn Top Voice"
summary
A blurb (longer than the tagline) written by the user for his profile.
"Most people go through life lost, disengaged, and unhappy at work and in their lives - I\u0027m on a mission to solve that.\n\nI spent 10 years as the founder of Axxis Audio, an electronics company that grew to multi-million dollar sales, which I sold in 2012. At that time, I funneled my earnings into the creation of an Internet of Things company, but numerous factors lead to its demise after 2 hard fought years. \n\nAt 31, I was penny-less, had a baby on the way, and had zero job prospects (despite applying to 150 companies). My desperate situation led me to take a job at Best Buy for $12 an hour while reinventing myself through the completion of an MBA at the University of Colorado, and a 6-month software development boot camp. \n\nAfter graduation, I landed at American Express as a Senior Product Manager and then got poached by Amazon in 2017 (because of my LinkedIn profile). My journey has led to a deep sense of perspective, humility, and purpose that I draw on to help others find clarity, meaning, and happiness in their careers and lives. \n\nCheck out my website for details on my Mindset Reset Podcast, Public Speaking, Consulting, or my free 40 page LinkedIn guide\n\nhttp://www.johnraphaelmarty.com/\n\nFAQ\u0027s\n\nQ: Can you speak at my Company, University, event or podcast?\nA: I\u0027d love to! I\u0027ve shared my message on the future of employment, breaking into big tech, and my personal story of reinventing myself and discovering my sense of purpose (and how you can too!).\n\n\u2611\ufe0f YouTube Channel #1 (John Marty) : http://www.youtube.com/c/JohnMarty-uncommon\n\u2611\ufe0f YouTube Channel #2 (Tech Careers for non-engineers: https://www.youtube.com/channel/UC900gMMPLwRGGXSTW1gdZHA\n\nFUN FACTS:\n\u2611\ufe0f I am an Avid cyclist and runner, and I just started learning to skateboard a half-pipe.\n\u2611\ufe0f Into the Enneagram? - I\u0027m a #3 (The Achiever)\n\nLETS CONNECT:\n\u2611\ufe0f Email: [email protected] (don\u0027t forget that \"R\"....The other guy gets my emails all the time)"
country
The user's country of residence depicted by
a 2-letter country code (ISO 3166-1 alpha-2).
"US"
country_full_name
The user's country of residence, in English words.
"United States of America"
city
The city that the user is living at.
"Seattle"
state
The state that the user is living at.
"Washington"
experiences
The user's list of historic work experiences.
See Experience object
education
The user's list of education background.
See Education object
languages
A list of languages that the user claims to be familiar with,
and has added to his/her profile.
Do note that we do not have the proficiency level as
that data point is not available on a public LinkedIn profile.
["English", "Chinese", "Japanese"]
accomplishment_organisations
List of noteworthy organizations that this user is part of.
See AccomplishmentOrg object
accomplishment_publications
List of noteworthy publications that this user has partook in.
See Publication object
accomplishment_honors_awards
List of noteworthy honours and awards that this user has won.
See HonourAward object
accomplishment_patents
List of noteworthy patents won by this user.
See Patent object
accomplishment_courses
List of noteworthy courses partook by this user.
See Course object
accomplishment_projects
List of noteworthy projects undertaken by this user.
See Project object
accomplishment_test_scores
List of noteworthy test scores accomplished by this user.
See TestScore object
volunteer_work
List of historic volunteer work experiences.
See VolunteeringExperience object
certifications
List of noteworthy certifications accomplished by this user.
See Certification object
connections
Total count of LinkedIn connections.
500
people_also_viewed
A list of other LinkedIn profiles closely related to this user.
See PeopleAlsoViewed object
recommendations
List of recommendations made by other users about this profile.
["Professional and dedicated approach towards clients and collegues."]
activities
A list of LinkedIn status activities.
See Activity object
similarly_named_profiles
A list of other LinkedIn profiles with similar names.
See SimilarProfile object
articles
A list of content-based articles posted by this user.
See Article object
groups
A list of LinkedIn groups that this user is a part of.",
See PersonGroup object
inferred_salary
A salary range inferred from the user's current job title and company.
See InferredSalary object
gender
Gender of the user.
"male"
birth_date
Birth date of the user.
See Date object
industry
Industry that the user works in.
"government administration"
extra
A bundle of extra data on this user.
See PersonExtra object
interests
A list of interests that the user has.
["education", "health", "human rights"]
personal_emails
A list of personal emails associated with this user.
["[email protected]", "[email protected]", "cde@@outlook.com"]
personal_numbers
A list of personal mobile phone numbers associated with this user.
["+6512345678", "+6285123450953", "+6502300340"]

Experience

Key Description Example
starts_at
A Date object
See Date object
ends_at
null
company
The company's display name.
"Freedom Fund Real Estate"
company_linkedin_profile_url
The company's profile URL.
If present, could be used with
Company Profile Endpoint for more info.
"https://www.linkedin.com/company/freedomfund"
title
"Co-Founder"
description
"Our mission is to provide everyday people seeking financial freedom long before the age of 65 with the ability to invest in high yield, short-term real estate investments that were only accessible in the past for a select few wealthy individuals. Each of our single family rehab projects require a minimum investment contribution of only $10K, we have simple terms, no multi-year hold periods, and no fees. With our unique model investors can log into our easy to use website, select the projects that they want to invest in, and get realtime updates on the status of their investments.\n\nWebsite: https://www.freedomfundinvestments.com/home"
location
null
logo_url
URL of the logo of the organisation.
"https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647\u0026v=beta\u0026t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s"

Date

Key Description Example
day
1
month
8
year
2023

Education

Key Description Example
starts_at
{"day": 1, "month": 1, "year": 2013}
ends_at
{"day": 31, "month": 12, "year": 2015}
field_of_study
"Finance + Economics"
degree_name
"Master of Business Administration (MBA)"
school
"University of Colorado Denver"
school_linkedin_profile_url
"https://www.linkedin.com/school/university-of-colorado-denver/"
description
null
logo_url
"https://media.licdn.com/dms/image/C560BAQGVi9eAHgWxFw/company-logo_100_100/0/1673448029676?e=2147483647\u0026v=beta\u0026t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE"
grade
null
activities_and_societies
null

AccomplishmentOrg

Key Description Example
starts_at
{"day": 1, "month": 1, "year": 2012}
ends_at
{"day": 1, "month": 8, "year": 2016}
org_name
"Microsoft"
title
"Software Developer"
description
null

Publication

Key Description Example
name
Name of the publication.
"Nobel Peace Prize"
publisher
The publishing organisation body.
"Acme Corp"
published_on
Date of publication.
See Date object
description
Description of the publication.
"\n Lorem ipsum dolor sit amet, consectetur adipiscing elit\n "
url
URL of the publication.
"https://example.com"

HonourAward

Key Description Example
title
Title of the honour/award.
"Nobel Peace Prize"
issuer
The organisation body issuing this honour/award.
"Acme Corp"
issued_on
Date that this honour/awared was issued.
See Date object
description
Description of the honour/award.
"\n Lorem ipsum dolor sit amet, consectetur adipiscing elit\n "

Patent

Key Description Example
title
Title of the patent.
"The art of war"
issuer
The organisation body that issued the patent.
"Acme Corp"
issued_on
Date of patent issuance.
See Date object
description
Description of the patent.
"\n Lorem ipsum dolor sit amet, consectetur adipiscing elit\n "
application_number
Numerical representation that identifies the patent.
"123"
patent_number
Application number of the patent.
"123"
url
null

Course

Key Description Example
name
Name of the course
"The course about ABCs"
number
The numerical representation of the course
"123"

Project

Key Description Example
starts_at
A Date object
See Date object
ends_at
null
title
Name of the project that has been or is currently being worked on.
"gMessenger"
description
Description of the project.
"gMessenger was built using Ruby on Rails, and the Bootstrap HTML, CSS, and JavaScript framework. It uses a Websocket-Rails integration to post a user\u0027s message content to the page in real time, with no page refresh required. gMessenger also includes custom authentication with three different permissions levels."
url
A web location related to the project.
"http://gmessenger.herokuapp.com/"

TestScore

Key Description Example
name
Title of the course for which test score was derived from.
"CS1101S"
score
Test score
"A"
date_on
Date of test was assesed.
See Date object
description
Description of the test score.
"Nailed it without studying."

VolunteeringExperience

Key Description Example
starts_at
{"day": 1, "month": 1, "year": 2012}
ends_at
{"day": 1, "month": 8, "year": 2016}
title
Name of volunteer activity.
"Surveyor"
cause
"To help the world"
company
The company's display name.
"Microsoft"
company_linkedin_profile_url
The company's profile URL.
If present, could be used with
Company Profile Endpoint for more info.
"https://www.linkedin.com/company/microsoft"
description
null
logo_url
URL of the logo of the organisation.
null

Certification

Key Description Example
starts_at
null
ends_at
null
name
Name of the course or program.
"SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean Practices in the SAFe Enterprise)"
license_number
null
display_source
null
authority
The organisation body issuing this certificate.
"Scaled Agile, Inc."
url
null

PeopleAlsoViewed

Key Description Example
link
URL of the profile.
Useable with Person profile endpoint
"https://www.linkedin.com/in/johndoe"
name
"John Doe"
summary
"Software Engineer at Google"
location
"Singapore"

Activity

Key Description Example
title
"Yesterday I toured a $1.2M property in California that has a large 13K sq ft lot with two homes on it. After 5 minutes of being on-site I\u2026"
link
"https://www.linkedin.com/posts/johnrmarty_financialfreedom-realestate-technology-activity-6940294635743301632-rsLo"
activity_status
"Shared by John Marty"

SimilarProfile

Key Description Example
name
"John Martinez"
link
"https://www.linkedin.com/in/john-martinez-90384a229"
summary
"Owner of Fight or Flight Medical Consultants, LLC , Owner Marty\u2019s Hardwood Works"
location
"San Antonio, TX"

Article

Key Description Example
title
"Manufacturing opportunity"
link
"https://www.linkedin.com/pulse/manufacturing-opportunity-bill-gates/"
published_date
A Date object
See Date object
author
"Bill Gates"
image_url
"https://media-exp1.licdn.com/dms/image/C4E12AQFftuPi0UiqWA/article-cover_image-shrink_720_1280/0/1574801149114?e=1640822400\u0026v=beta\u0026t=ZAe3ERmQCM8QHGmRPS2LJ-C76GD5PR7FBHMVL4Z6iVg"

PersonGroup

Key Description Example
profile_pic_url
The URL to the profile picture of this LinkedIn Group
"https://media-exp1.licdn.com/dms/image/C4D07AQG9IK9V0pk3mQ/group-logo_image-shrink_92x92/0/1631371531293?e=1642060800\u0026v=beta\u0026t=UK1tfIppWa-Nx7k9whmm5f9XdZoBdJhApf9N3ke3204"
name
Name of LinkedIn group for which this user is in
"Hadoop Users"
url
URL to the LinkedIn Group
"https://www.linkedin.com/groups/988957"

InferredSalary

Key Description Example
min
35000
max
45000

PersonExtra

Key Description Example
github_profile_id
This profile's Github account.
"github-username"
facebook_profile_id
This profile's Facebook account.
"facebook-username"
twitter_profile_id
This profile's twitter account.
"twitter-username"

Response Headers

Header Key Description Example
X-Proxycurl-Credit-Cost Total cost of credits for this API call 1

School API

Student Listing Endpoint

GET /proxycurl/api/linkedin/school/students/

Cost: 3 credits / student returned. (Extra charges might be incurred if premium optional parameters are used. Please read the description of the parameters that you intend to use)

Get a list of students of a school or university.

curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/linkedin/school/students/' \
    --data-urlencode 'linkedin_school_url=https://www.linkedin.com/school/stanford-university' \
    --data-urlencode 'country=us' \
    --data-urlencode 'enrich_profiles=enrich' \
    --data-urlencode 'search_keyword=computer*|cs' \
    --data-urlencode 'page_size=100' \
    --data-urlencode 'student_status=current' \
    --data-urlencode 'sort_by=recently-matriculated' \
    --data-urlencode 'resolve_numeric_id=false'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/linkedin/school/students/'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'linkedin_school_url': 'https://www.linkedin.com/school/stanford-university',
    'country': 'us',
    'enrich_profiles': 'enrich',
    'search_keyword': 'computer*|cs',
    'page_size': '100',
    'student_status': 'current',
    'sort_by': 'recently-matriculated',
    'resolve_numeric_id': 'false',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
linkedin_school_url yes
URL of the LinkedIn School Profile to target.

URL should be in the format of https://www.linkedin.com/school/<public_identifier>
https://www.linkedin.com/school/stanford-university
country no
Limit the result set to the country locality of the profile. For example, set the parameter of country=us if you only want profiles from the US.

This parameter accepts a case-insensitive Alpha-2 ISO3166 country code.

Costs an extra 3 credit per result returned.
us
enrich_profiles no
Get the full profile of students instead of only their profile urls.

Each request respond with a streaming response of profiles.

The valid values are:

* skip (default): lists student's profile url
* enrich: lists full profile of students

Calling this API endpoint with this parameter would add 1 credit per student returned.
enrich
search_keyword no
Filter students by their major by matching the student's major against a regular expression.

The default value of this parameter is null.

The accepted value for this parameter is a case-insensitive regular expression.

(The base cost of calling this API endpoint with this parameter would be 10 credits.
Each student matched and returned would cost 6 credits per student returned.)
computer*|cs
page_size no
Tune the maximum results returned per API call.

The default value of this parameter is 200000.

Accepted values for this parameter is an integer ranging from 1 to 200000.

When enrich_profiles=enrich, this parameter accepts value ranging from 1 to 100 and the default value is 100.
100
student_status no
Parameter to tell the API to return past or current students.

Valid values are current, past, and all:

* current (default) : lists current students
* past : lists past students
* all : lists current & past students
current
sort_by no
Sort students by matriculation or graduation dates.

Valid values are:
* recently-matriculated - Sort students by their matriculation date. Students who had had most recently started school is on the top of the list.
* recently-graduated - Sort students by their graduation date. The most recently graduated student is on the top of this list.
* none - The default value. Do not sort.

If this parameter is supplied with a value other than none, will add 50 credits to the base cost of the API endpoint regardless number of results returned. It will also add an additional cost of 10 credits per student returned.
recently-matriculated
resolve_numeric_id no
Enable support for School Profile URLs with numerical IDs that you most frequently fetch from Sales Navigator.
We achieve this by resolving numerical IDs into vanity IDs with cached company profiles from LinkDB.
For example, we will turn https://www.linkedin.com/school/1234567890 to https://www.linkedin.com/school/acme-corp -- for which the API endpoint only supports the latter.

This parameter accepts the following values:
- false (default value) - Will not resolve numerical IDs.
- true - Enable support for School Profile URLs with numerical IDs.
Costs an extra 2 credit on top of the base cost of the endpoint.
false

Response

{
    "next_page": null,
    "students": [
        {
            "profile": null,
            "profile_url": "https://www.linkedin.com/in/minghowlogic"
        },
        {
            "profile": null,
            "profile_url": "https://www.linkedin.com/in/zhengpingzhou"
        }
    ]
}
Key Description Example
students
A list of student profiles (if enriched) and their associated profile URL.
See Student object
next_page
The API URI that will lead to the next page of results.
null

Student

Key Description Example
profile_url
"https://www.linkedin.com/in/minghowlogic"
profile
null

Response Headers

Header Key Description Example
X-Proxycurl-Credit-Cost Total cost of credits for this API call 3

School Profile Endpoint

GET /proxycurl/api/linkedin/school

Cost: 1 credit / successful request.

Get structured data of a LinkedIn School Profile

curl \
    -G \
    -H "Authorization: Bearer ${YOUR_API_KEY}" \
    'https://nubela.co/proxycurl/api/linkedin/school' \
    --data-urlencode 'url=https://www.linkedin.com/school/national-university-of-singapore' \
    --data-urlencode 'use_cache=if-present'
import requests

api_endpoint = 'https://nubela.co/proxycurl/api/linkedin/school'
api_key = 'YOUR_API_KEY'
header_dic = {'Authorization': 'Bearer ' + api_key}
params = {
    'url': 'https://www.linkedin.com/school/national-university-of-singapore',
    'use_cache': 'if-present',
}
response = requests.get(api_endpoint,
                        params=params,
                        headers=header_dic)

Run in Postman

URL Parameters

Parameter Required Description Example
url yes
URL of the LinkedIn School Profile to crawl.

URL should be in the format of https://www.linkedin.com/school/<public_identifier>
https://www.linkedin.com/school/national-university-of-singapore
use_cache no
if-present The default behavior. Fetches profile from cache regardless of age of profile. If profile is not available in cache, API will attempt to source profile externally.

if-recent API will make a best effort to return a fresh profile no older than 29 days.Costs an extra 1 credit on top of the cost of the base endpoint.
if-present

Response

{
    "affiliated_companies": [],
    "background_cover_image_url": "https://s3.us-west-000.backblazeb2.com/proxycurl/company/national-university-of-singapore/cover?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request\u0026X-Amz-Date=20230119T071304Z\u0026X-Amz-Expires=3600\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=551f456b6156e4610bc3e7be43e2f9b0e4b071db5f41f56cc0e408fc1b5a1140",
    "company_size": [
        5001,
        10000
    ],
    "company_size_on_linkedin": 16084,
    "company_type": "EDUCATIONAL_INSTITUTION",
    "description": "At NUS, we are shaping the future through our people and our pursuit of new frontiers in knowledge. In a single century, we have become a university of global influence and an Asian thought leader. Our location at the crossroads of Asia informs our mission and gives us a tremendous vantage point to help create opportunities and address the pressing issues facing Singapore, Asia and the world.\r\rAt NUS, we believe in education, research and service that change lives.",
    "follower_count": 539321,
    "founded_year": 1905,
    "hq": {
        "city": "Singapore",
        "country": "SG",
        "is_hq": true,
        "line_1": "21 Lower Kent Ridge Road, Singapore",
        "postal_code": "119077",
        "state": null
    },
    "industry": "Higher Education",
    "linkedin_internal_id": "5524",
    "locations": [
        {
            "city": "Singapore",
            "country": "SG",
            "is_hq": true,
            "line_1": "21 Lower Kent Ridge Road, Singapore",
            "postal_code": "119077",
            "state": null
        }
    ],
    "name": "National University of Singapore",
    "profile_pic_url": "https://s3.us-west-000.backblazeb2.com/proxycurl/company/national-university-of-singapore/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request\u0026X-Amz-Date=20230119T071304Z\u0026X-Amz-Expires=3600\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=a66e032f168972bef4ea3821705194ea1c144415a1655bdb328f961ed30e2a24",
    "search_id": "5524",
    "similar_companies": [
        {
            "industry": "Higher Education",
            "link": "https://www.linkedin.com/school/nus-business-school/",
            "location": null,
            "name": "NUS Business School"
        },
        {
            "industry": "Higher Education",
            "link": "https://www.linkedin.com/school/nusfass/",
            "location": null,
            "name": "NUS Faculty of Arts and Social Sciences"
        },
        {
            "industry": "Research",
            "link": "https://www.linkedin.com/company/solar-energy-research-institute-of-singapore-seris",
            "location": null,
            "name": "Solar Energy Research Institute of Singapore"
        },
        {
            "industry": "Higher Education",
            "link": "https://www.linkedin.com/school/duke-nus/",
            "location": null,
            "name": "Duke-NUS Medical School"
        },
        {
            "industry": "Professional Training \u0026 Coaching",
            "link": "https://www.linkedin.com/company/iss_nus",
            "location": null,
            "name": "NUS-ISS"
        },
        {
            "industry": "Higher Education",
            "link": "https://www.linkedin.com/company/nusfst",
            "location": null,
            "name": "NUS Department of Food Science and Technology"
        },
        {
            "industry": "Education Management",
            "link": "https://www.linkedin.com/company/centre-for-future-ready-graduates",
            "location": null,
            "name": "NUS Centre for Future-ready Graduates"
        }
    ],
    "specialities": [
        "education",
        "research",
        "broad-based curriculum",
        "cross-faculty enrichment"
    ],
    "tagline": null,
    "universal_name_id": "national-university-of-singapore",
    "updates": [],
    "website": "http://nus.edu.sg"
}
Key Description Example
linkedin_internal_id
LinkedIn's Internal and immutable ID of this Company profile.
"5524"
description
"At NUS, we are shaping the future through our people and our pursuit of new frontiers in knowledge. In a single century, we have become a university of global influence and an Asian thought leader. Our location at the crossroads of Asia informs our mission and gives us a tremendous vantage point to help create opportunities and address the pressing issues facing Singapore, Asia and the world.\r\rAt NUS, we believe in