kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
9979 wiersze
450 KiB
YAML
9979 wiersze
450 KiB
YAML
servers:
|
|
- url: https://nubela.co/proxycurl
|
|
description: With SSL Proxycurl Server
|
|
- url: http://nubela.co/proxycurl
|
|
description: Without SSL Proxycurl Server
|
|
security:
|
|
- BearerAuth:
|
|
- client
|
|
paths:
|
|
/api/linkedin/school:
|
|
get:
|
|
description: 'Cost: 1 credit / successful request.
|
|
|
|
Get structured data of a LinkedIn School Profile'
|
|
parameters:
|
|
- in: query
|
|
name: url
|
|
required: true
|
|
description:
|
|
"\n URL of the LinkedIn School Profile to crawl.\n\n URL\
|
|
\ should be in the format of `https://www.linkedin.com/school/<public_identifier>`\n\
|
|
\ "
|
|
example: https://www.linkedin.com/school/national-university-of-singapore
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: use_cache
|
|
required: false
|
|
description:
|
|
'`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.'
|
|
example: if-present
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/LinkedinSchool'
|
|
example:
|
|
linkedin_internal_id: '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 education, research and service\
|
|
\ that change lives."
|
|
website: http://nus.edu.sg
|
|
industry: Higher Education
|
|
company_size:
|
|
- 5001
|
|
- 10000
|
|
company_size_on_linkedin: 16084
|
|
hq:
|
|
country: SG
|
|
city: Singapore
|
|
postal_code: '119077'
|
|
line_1: 21 Lower Kent Ridge Road, Singapore
|
|
is_hq: true
|
|
state: null
|
|
company_type: EDUCATIONAL_INSTITUTION
|
|
founded_year: 1905
|
|
specialities:
|
|
- education
|
|
- research
|
|
locations:
|
|
- country: SG
|
|
city: Singapore
|
|
postal_code: '119077'
|
|
line_1: 21 Lower Kent Ridge Road, Singapore
|
|
is_hq: true
|
|
state: null
|
|
name: National University of Singapore
|
|
tagline: null
|
|
universal_name_id: 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&X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20230119T071304Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=a66e032f168972bef4ea3821705194ea1c144415a1655bdb328f961ed30e2a24
|
|
background_cover_image_url: https://s3.us-west-000.backblazeb2.com/proxycurl/company/national-university-of-singapore/cover?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20230119T071304Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=551f456b6156e4610bc3e7be43e2f9b0e4b071db5f41f56cc0e408fc1b5a1140
|
|
search_id: '5524'
|
|
similar_companies:
|
|
- name: NUS Business School
|
|
link: https://www.linkedin.com/school/nus-business-school/
|
|
industry: Higher Education
|
|
location: null
|
|
- name: NUS Faculty of Arts and Social Sciences
|
|
link: https://www.linkedin.com/school/nusfass/
|
|
industry: Higher Education
|
|
location: null
|
|
affiliated_companies: []
|
|
updates: []
|
|
follower_count: 539321
|
|
description: Profile data with profile picture, school location, etc
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- School API
|
|
operationId: School Profile Endpoint
|
|
summary: School Profile Endpoint
|
|
/api/linkedin/company:
|
|
get:
|
|
description: 'Cost: 1 credit / successful request.
|
|
|
|
Get structured data of a Company Profile'
|
|
parameters:
|
|
- in: query
|
|
name: url
|
|
required: true
|
|
description:
|
|
"\n URL of the LinkedIn Company Profile to\
|
|
\ crawl.\n\n URL should be in the format of `https://www.linkedin.com/company/<public_identifier>`\n\
|
|
\ "
|
|
example: https://www.linkedin.com/company/google/
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: resolve_numeric_id
|
|
required: false
|
|
description:
|
|
"\n Enable support for Company Profile URLs\
|
|
\ with numerical IDs that you most frequently fetch from Sales Navigator.\n\
|
|
\ We achieve this by resolving numerical IDs into vanity\
|
|
\ IDs with cached company profiles from [LinkDB](https://nubela.co/proxycurl/linkdb).\n\
|
|
\ 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.\n\n This parameter accepts\
|
|
\ the following values:\n - `false` - Will not resolve\
|
|
\ numerical IDs.\n - `true` (default value) - Enable\
|
|
\ support for Company Profile URLs with numerical IDs.\n \
|
|
\ Costs an extra `2` credit on top of the base cost of the endpoint.\n\
|
|
\ "
|
|
example: 'true'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: categories
|
|
required: false
|
|
description:
|
|
"\n Appends categories data of this company.\n\
|
|
\n Default value is `\"exclude\"`.\n \
|
|
\ The other acceptable value is `\"include\"`, which will include these\
|
|
\ categories (if available) for `1` extra credit.\n "
|
|
example: include
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: funding_data
|
|
required: false
|
|
description:
|
|
"\n Returns a list of funding rounds that\
|
|
\ this company has received.\n\n Default value is `\"\
|
|
exclude\"`.\n The other acceptable value is `\"include\"\
|
|
`, which will include these categories (if available) for `1` extra credit.\n\
|
|
\ "
|
|
example: include
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: exit_data
|
|
required: false
|
|
description:
|
|
"\n Returns a list of investment portfolio\
|
|
\ exits.\n\n Default value is `\"exclude\"`.\n \
|
|
\ The other acceptable value is `\"include\"`, which will include\
|
|
\ these categories (if available) for `1` extra credit.\n \
|
|
\ "
|
|
example: include
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: acquisitions
|
|
required: false
|
|
description:
|
|
"\n Provides further enriched data on acquisitions\
|
|
\ made by this company from external sources.\n\n Default\
|
|
\ value is `\"exclude\"`.\n The other acceptable value\
|
|
\ is `\"include\"`, which will include these acquisition data (if available)\
|
|
\ for `1` extra credit.\n "
|
|
example: include
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: extra
|
|
required: false
|
|
description:
|
|
"\n Enriches the Company Profile with extra\
|
|
\ details from external sources.\n Details include Crunchbase\
|
|
\ ranking, contact email, phone number, Facebook account, Twitter account,\
|
|
\ funding rounds and amount, IPO status, investor information, etc.\n\n\
|
|
\ Default value is `\"exclude\"`.\n \
|
|
\ The other acceptable value is `\"include\"`, which will include these\
|
|
\ extra details (if available) for `1` extra credit.\n \
|
|
\ "
|
|
example: include
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: use_cache
|
|
required: false
|
|
description:
|
|
"\n `if-present` The default behavior.\n \
|
|
\ Fetches profile from cache regardless of age of profile.\n\
|
|
\ If profile is not available in cache, API will attempt\
|
|
\ to source profile externally.\n\n `if-recent` API will\
|
|
\ make a best effort to return a fresh profile no older than 29 days.\"\n\
|
|
\ Costs an extra `1` credit on top of the cost of the\
|
|
\ base endpoint.\n "
|
|
example: if-present
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: fallback_to_cache
|
|
required: false
|
|
description:
|
|
"\n Tweaks the fallback behavior if an error\
|
|
\ arises from fetching a fresh profile.\n\n This parameter\
|
|
\ accepts the following values:\n * `on-error` (default\
|
|
\ value) - Fallback to reading the profile from cache if an error arises.\n\
|
|
\ * `never` - Do not ever read profile from cache.\n\
|
|
\ "
|
|
example: on-error
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/LinkedinCompany'
|
|
example:
|
|
linkedin_internal_id: '1441'
|
|
description: "A problem isn't truly solved until it's 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.
|
|
|
|
|
|
Check out our career opportunities at careers.google.com."
|
|
website: https://goo.gle/3m1IN7m
|
|
industry: Software Development
|
|
company_size:
|
|
- 10001
|
|
- null
|
|
company_size_on_linkedin: 319856
|
|
hq:
|
|
country: US
|
|
city: Mountain View
|
|
postal_code: '94043'
|
|
line_1: 1600 Amphitheatre Parkway
|
|
is_hq: true
|
|
state: CA
|
|
company_type: PUBLIC_COMPANY
|
|
founded_year: null
|
|
specialities:
|
|
- search
|
|
- ads
|
|
locations:
|
|
- country: US
|
|
city: Mountain View
|
|
postal_code: '94043'
|
|
line_1: 1600 Amphitheatre Parkway
|
|
is_hq: true
|
|
state: CA
|
|
- country: US
|
|
city: New York
|
|
postal_code: '10011'
|
|
line_1: 111 8th Ave
|
|
is_hq: false
|
|
state: NY
|
|
name: Google
|
|
tagline: null
|
|
universal_name_id: google
|
|
profile_pic_url: https://s3.us-west-000.backblazeb2.com/proxycurl/company/google/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20230119T060024Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=0d3500b39da8db1d2d8f5727a9ac39a7c4a88b4632ed68209dee12f06bc79aca
|
|
background_cover_image_url: https://s3.us-west-000.backblazeb2.com/proxycurl/company/google/cover?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20230119T060024Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=abb7a4b87583cffda8db24d58d906c644998fae8cbb99e98c69a35720fcd0050
|
|
search_id: '1441'
|
|
similar_companies:
|
|
- name: Amazon
|
|
link: https://www.linkedin.com/company/amazon
|
|
industry: Software Development
|
|
location: Seattle, WA
|
|
- name: Microsoft
|
|
link: https://www.linkedin.com/company/microsoft
|
|
industry: Software Development
|
|
location: Redmond, Washington
|
|
affiliated_companies:
|
|
- name: YouTube
|
|
link: https://www.linkedin.com/company/youtube
|
|
industry: Software Development
|
|
location: San Bruno, CA
|
|
- name: Google Cloud
|
|
link: https://www.linkedin.com/showcase/google-cloud
|
|
industry: Software Development
|
|
location: Mountain View, California
|
|
updates:
|
|
- article_link: null
|
|
image: https://media.licdn.com/dms/image/C5605AQFthnjiTD6Mvg/videocover-high/0/1660754102856?e=2147483647&v=beta&t=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&v=beta&t=whRRx9ULPEuyw_FgUg4Z3N3O9iksyJW7ewCGZA6ujdg
|
|
posted_on: null
|
|
text:
|
|
"Ariana, welcome to Google. Here\u2019s to a year full of\
|
|
\ growth, learning, and experiences at #LifeAtGoogle! \U0001F389"
|
|
total_likes: 397
|
|
follower_count: 27472792
|
|
description: Profile data with profile picture, office locations, etc
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Company API
|
|
operationId: Company Profile Endpoint
|
|
summary: Company Profile Endpoint
|
|
/api/v2/linkedin:
|
|
get:
|
|
description: 'Cost: 1 credit / successful request.
|
|
|
|
Get structured data of a Personal Profile'
|
|
parameters:
|
|
- in: query
|
|
name: extra
|
|
required: false
|
|
description:
|
|
"\n Enriches the Person Profile with extra\
|
|
\ details from external sources.\n Extra details include\
|
|
\ gender, birth date, industry and interests.\n\n This\
|
|
\ parameter accepts the following values:\n - `exclude`\
|
|
\ (default value) - Does not provide extra data field.\n \
|
|
\ - `include` - Append extra data to the person profile object.\n \
|
|
\ Costs an extra `1` credit on top of the cost of the base\
|
|
\ endpoint (if data is available).\n "
|
|
example: include
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: github_profile_id
|
|
required: false
|
|
description:
|
|
"\n Enriches the Person Profile with Github\
|
|
\ Id from external sources.\n\n This parameter accepts\
|
|
\ the following values:\n - `exclude` (default value)\
|
|
\ - Does not provide Github Id data field.\n - `include`\
|
|
\ - Append Github Id data to the person profile object.\n \
|
|
\ Costs an extra `1` credit on top of the cost of the base endpoint\
|
|
\ (if data is available).\n "
|
|
example: include
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: facebook_profile_id
|
|
required: false
|
|
description:
|
|
"\n Enriches the Person Profile with Facebook\
|
|
\ Id from external sources.\n\n This parameter accepts\
|
|
\ the following values:\n - `exclude` (default value)\
|
|
\ - Does not provide Facebook Id data field.\n - `include`\
|
|
\ - Append Facebook Id data to the person profile object.\n \
|
|
\ Costs an extra `1` credit on top of the cost of the base endpoint\
|
|
\ (if data is available).\n "
|
|
example: include
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: twitter_profile_id
|
|
required: false
|
|
description:
|
|
"\n Enriches the Person Profile with Twitter\
|
|
\ Id from external sources.\n\n This parameter accepts\
|
|
\ the following values:\n - `exclude` (default value)\
|
|
\ - Does not provide Twitter Id data field.\n - `include`\
|
|
\ - Append Twitter Id data to the person profile object.\n \
|
|
\ Costs an extra `1` credit on top of the cost of the base endpoint\
|
|
\ (if data is available).\n "
|
|
example: include
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: personal_contact_number
|
|
required: false
|
|
description:
|
|
"\n Enriches the Person Profile with personal\
|
|
\ numbers from external sources.\n\n This parameter accepts\
|
|
\ the following values:\n - `exclude` (default value)\
|
|
\ - Does not provide personal numbers data field.\n -\
|
|
\ `include` - Append personal numbers data to the person profile object.\n\
|
|
\ Costs an extra `1` credit per email returned on top\
|
|
\ of the cost of the base endpoint (if data is available).\n \
|
|
\ "
|
|
example: include
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: personal_email
|
|
required: false
|
|
description:
|
|
"\n Enriches the Person Profile with personal\
|
|
\ emails from external sources.\n\n This parameter accepts\
|
|
\ the following values:\n - `exclude` (default value)\
|
|
\ - Does not provide personal emails data field.\n -\
|
|
\ `include` - Append personal emails data to the person profile object.\n\
|
|
\ Costs an extra `1` credit per email returned on top\
|
|
\ of the cost of the base endpoint (if data is available).\n \
|
|
\ "
|
|
example: include
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: inferred_salary
|
|
required: false
|
|
description:
|
|
"\n Include inferred salary range from external\
|
|
\ sources.\n\n This parameter accepts the following values:\n\
|
|
\ - `exclude` (default value) - Does not provide inferred\
|
|
\ salary data field.\n - `include` - Append inferred\
|
|
\ salary range data to the person profile object.\n Costs\
|
|
\ an extra `1` credit on top of the cost of the base endpoint (if data is\
|
|
\ available).\n "
|
|
example: include
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: skills
|
|
required: false
|
|
description:
|
|
"\n Include skills data from external sources.\n\
|
|
\n This parameter accepts the following values:\n \
|
|
\ - `exclude` (default value) - Does not provide skills\
|
|
\ data field.\n - `include` - Append skills data to the\
|
|
\ person profile object.\n Costs an extra `1` credit\
|
|
\ on top of the cost of the base endpoint (if data is available).\n \
|
|
\ "
|
|
example: include
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: use_cache
|
|
required: false
|
|
description:
|
|
"\n `if-present` The default behavior.\n \
|
|
\ Fetches profile from cache regardless of age of profile.\n\
|
|
\ If profile is not available in cache, API will attempt\
|
|
\ to source profile externally.\n\n `if-recent` API will\
|
|
\ make a best effort to return a fresh profile no older than 29 days.\"\n\
|
|
\ Costs an extra `1` credit on top of the cost of the\
|
|
\ base endpoint.\n "
|
|
example: if-present
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: fallback_to_cache
|
|
required: false
|
|
description:
|
|
"\n Tweaks the fallback behavior if an error\
|
|
\ arises from fetching a fresh profile.\n\n This parameter\
|
|
\ accepts the following values:\n * `on-error` (default\
|
|
\ value) - Fallback to reading the profile from cache if an error arises.\n\
|
|
\ * `never` - Do not ever read profile from cache.\n\
|
|
\ "
|
|
example: on-error
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: twitter_profile_url
|
|
required: false
|
|
description:
|
|
"\n The Twitter/X Profile URL from which you\
|
|
\ wish to extract person profile\n\n URL should be in\
|
|
\ the format of `https://x.com/<public-identifier>`\n \
|
|
\ \nyes (Include only one of: `linkedin_profile_url`, `twitter_profile_url`,\
|
|
\ or `facebook_profile_url`)"
|
|
example: https://x.com/johnrmarty/
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: facebook_profile_url
|
|
required: false
|
|
description:
|
|
"\n The Facebook Profile URL from which you\
|
|
\ wish to extract person profile\n\n URL should be in\
|
|
\ the format of `https://facebook.com/<public-identifier>`\n \
|
|
\ \nyes (Include only one of: `linkedin_profile_url`, `twitter_profile_url`,\
|
|
\ or `facebook_profile_url`)"
|
|
example: https://facebook.com/johnrmarty/
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: linkedin_profile_url
|
|
required: false
|
|
description:
|
|
"\n The LinkedIn Profile URL from which you\
|
|
\ wish to extract person profile\n\n URL should be in\
|
|
\ the format of `https://linkedin.com/in/<public-identifier>`\n \
|
|
\ \nyes (Include only one of: `linkedin_profile_url`, `twitter_profile_url`,\
|
|
\ or `facebook_profile_url`)"
|
|
example: https://linkedin.com/in/johnrmarty/
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/PersonEndpointResponse'
|
|
example:
|
|
public_identifier: johnrmarty
|
|
profile_pic_url: https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647&v=beta&t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI
|
|
background_cover_image_url: https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647&v=beta&t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU
|
|
first_name: John
|
|
last_name: Marty
|
|
full_name: John Marty
|
|
follower_count: null
|
|
occupation: Co-Founder at Freedom Fund Real Estate
|
|
headline: Financial Freedom through Real Estate - LinkedIn Top Voice
|
|
summary:
|
|
"Most people go through life lost, disengaged, and unhappy\
|
|
\ at work and in their lives - I'm 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's\n\nQ: Can you speak at my Company, University, event or\
|
|
\ podcast?\nA: I'd love to! I've 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'm a #3 (The Achiever)\n\nLETS CONNECT:\n\
|
|
\u2611\uFE0F Email: JohnRmarty@gmail.com (don't forget that \"R\"\
|
|
....The other guy gets my emails all the time)"
|
|
country: US
|
|
country_full_name: United States of America
|
|
city: Seattle
|
|
state: Washington
|
|
experiences:
|
|
- starts_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2021
|
|
ends_at: null
|
|
company: Freedom Fund Real Estate
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/freedomfund
|
|
company_facebook_profile_url: null
|
|
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.
|
|
|
|
|
|
Website: https://www.freedomfundinvestments.com/home'
|
|
location: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647&v=beta&t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2021
|
|
ends_at: null
|
|
company: Mindset Reset Podcast
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/mindset-reset-podcast
|
|
company_facebook_profile_url: null
|
|
title: Founder
|
|
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"
|
|
location: Denver, Colorado, United States
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQF9QJVQm3SOvA/company-logo_100_100/0/1614527476576?e=2147483647&v=beta&t=m3tx83nMN-E3XQFoJG0Wmch8U4qKnJ9i--5NSAfffC0
|
|
education:
|
|
- 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/
|
|
school_facebook_profile_url: null
|
|
description: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQGVi9eAHgWxFw/company-logo_100_100/0/1673448029676?e=2147483647&v=beta&t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE
|
|
grade: null
|
|
activities_and_societies: null
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at:
|
|
day: 31
|
|
month: 12
|
|
year: 2015
|
|
field_of_study: School of Software Development
|
|
degree_name: null
|
|
school: Galvanize Inc
|
|
school_linkedin_profile_url: https://www.linkedin.com/school/galvanize-it/
|
|
school_facebook_profile_url: null
|
|
description:
|
|
rails, ruby, rspec, capybara, bootstrap, css, html,
|
|
api integration, Jquery, Javascript
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQFKNxOZ4X0g8Q/company-logo_100_100/0/1670610916338?e=2147483647&v=beta&t=t7ImfhmsuIJ7HJGHEbPJ2suxdslKhzp9v-5h9_G4sWE
|
|
grade: null
|
|
activities_and_societies: null
|
|
languages:
|
|
- English
|
|
- Spanish
|
|
accomplishment_organisations: []
|
|
accomplishment_publications: []
|
|
accomplishment_honors_awards: []
|
|
accomplishment_patents: []
|
|
accomplishment_courses: []
|
|
accomplishment_projects:
|
|
- starts_at:
|
|
day: 1
|
|
month: 3
|
|
year: 2015
|
|
ends_at: null
|
|
title: gMessenger
|
|
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's message content to the page in real
|
|
time, with no page refresh required. gMessenger also includes
|
|
custom authentication with three different permissions levels.
|
|
url: http://gmessenger.herokuapp.com/
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at: null
|
|
title: Taskly
|
|
description:
|
|
A task and project management responsive web app utilizing
|
|
Ruby on Rails - CSS and HTML
|
|
url: https://hidden-coast-7204.herokuapp.com/
|
|
accomplishment_test_scores: []
|
|
volunteer_work: []
|
|
certifications:
|
|
- starts_at: null
|
|
ends_at: null
|
|
name:
|
|
SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean
|
|
Practices in the SAFe Enterprise)
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scaled Agile, Inc.
|
|
url: null
|
|
- starts_at: null
|
|
ends_at: null
|
|
name: SCRUM Alliance Certified Product Owner
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scrum Alliance
|
|
url: null
|
|
connections: 500
|
|
people_also_viewed: []
|
|
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've\
|
|
\ 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!"
|
|
activities:
|
|
- 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
|
|
similarly_named_profiles:
|
|
- 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
|
|
- name: John Marty
|
|
link: https://www.linkedin.com/in/senatormarty
|
|
summary: null
|
|
location: St Paul, MN
|
|
articles: []
|
|
groups: []
|
|
description: Profile data with profile picture, job history, etc.
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- People API
|
|
operationId: Person Profile Endpoint
|
|
summary: Person Profile Endpoint
|
|
/api/customers:
|
|
get:
|
|
description:
|
|
'Cost: 10 credits / result for users on an annual subscription
|
|
or Enterprise plan.
|
|
|
|
Get a list of probable corporate customers of a target company.'
|
|
parameters:
|
|
- in: query
|
|
name: linkedin_company_profile_url
|
|
required: false
|
|
description:
|
|
"\n The LinkedIn Profile URL of the company from\
|
|
\ which you want to get a list of customers of.\n\n URL should\
|
|
\ be in the format of `https://www.linkedin.com/company/<public-identifier>`\n\
|
|
\ \n\n Yes (Include only one of: `linkedin_company_profile_url`\
|
|
\ or `twitter_profile_url`)\n "
|
|
example: https://www.linkedin.com/company/watsons
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: twitter_profile_url
|
|
required: false
|
|
description:
|
|
"\n The Twitter/X Profile URL belonging to the\
|
|
\ company that you want to get a list of customers of.\n\n \
|
|
\ URL should be in the format of `https://x.com/<public-identifier>`\n\
|
|
\ \n\n Yes (Include only one of: `linkedin_company_profile_url`\
|
|
\ or `twitter_profile_url`)\n "
|
|
example: https://x.com/watsonsproperty
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: page_size
|
|
required: false
|
|
description:
|
|
"\n Limit the maximum results of customer companies\
|
|
\ returned per API call.\n\n The default value of this parameter\
|
|
\ is 10.\n\n Accepted values for this parameter is an integer\
|
|
\ ranging from 0 to 1000.\n "
|
|
example: '10'
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/CustomerList'
|
|
example:
|
|
companies:
|
|
- linkedin_company_profile_url: https://www.linkedin.com/company/spire-solicitors-llp
|
|
twitter_profile_url: https://twitter.com/spirellp
|
|
email: info@spiresolicitors.co.uk
|
|
- linkedin_company_profile_url: https://www.linkedin.com/company/mall-wood-insurance-services-ltd
|
|
twitter_profile_url: https://twitter.com/draytonins
|
|
email: null
|
|
next_page: null
|
|
description: A list of probable customers of the target company.
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Customer API `EXPERIMENTAL`
|
|
operationId: Customer Listing Endpoint `EXPERIMENTAL`
|
|
summary: Customer Listing Endpoint `EXPERIMENTAL`
|
|
/api/customers/count/:
|
|
get:
|
|
description:
|
|
'Cost: 1 credit / result for users on an annual subscription or
|
|
Enterprise plan.
|
|
|
|
Get the total count of probable corporate customers of a target company.'
|
|
parameters:
|
|
- in: query
|
|
name: linkedin_company_profile_url
|
|
required: false
|
|
description:
|
|
"\n The LinkedIn Profile URL of the company from\
|
|
\ which you want to get a list of customers of.\n\n URL should\
|
|
\ be in the format of `https://www.linkedin.com/company/<public-identifier>`\n\
|
|
\ \n\n Yes (Include only one of: `linkedin_company_profile_url`\
|
|
\ or `twitter_profile_url`)\n "
|
|
example: https://www.linkedin.com/company/watsons
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: twitter_profile_url
|
|
required: false
|
|
description:
|
|
"\n The Twitter/X Profile URL belonging to the\
|
|
\ company that you want to get a list of customers of.\n\n \
|
|
\ URL should be in the format of https://x.com/<public-identifier>`\n\
|
|
\ \n\n Yes (Include only one of: `linkedin_company_profile_url`\
|
|
\ or `twitter_profile_url`)\n "
|
|
example: https://x.com/watsonsproperty
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/CustomerCount'
|
|
example:
|
|
company_count: 125
|
|
description: Number of probable customers of the target company.
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Customer API `EXPERIMENTAL`
|
|
operationId: Customer Listing Count Endpoint `EXPERIMENTAL`
|
|
summary: Customer Listing Count Endpoint `EXPERIMENTAL`
|
|
/api/linkedin/company/employees/:
|
|
get:
|
|
description: 'Cost: 3 credits / employee returned.
|
|
|
|
Get a list of employees of a Company.
|
|
|
|
|
|
This API endpoint is powered by [LinkDB](https://nubela.co/proxycurl/linkdb),
|
|
our comprehensive dataset of people and company profiles.'
|
|
parameters:
|
|
- in: query
|
|
name: country
|
|
required: false
|
|
description:
|
|
"\n 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. Or you can set the parameter to `country=us,sg` if you want\
|
|
\ employees from both the US and Singapore.\n\n This parameter accepts\
|
|
\ a comma-separated case-insensitive values of [Alpha-2 ISO3166 country\
|
|
\ code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).\n\n Costs\
|
|
\ an extra `3` credit per result returned.\n "
|
|
example: us
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: enrich_profiles
|
|
required: false
|
|
description:
|
|
"\n Get the full profile of employees instead of only their\
|
|
\ profile urls.\n\n Each request respond with a streaming response of\
|
|
\ profiles.\n\n The valid values are:\n \n * `skip` (default):\
|
|
\ lists employee's profile url\n * `enrich`: lists full profile of employees\n\
|
|
\n Calling this API endpoint with this parameter would add `1` credit\
|
|
\ per employee returned.\n "
|
|
example: enrich
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: role_search
|
|
required: false
|
|
description:
|
|
"\n Filter employees by their title by matching the employee's\
|
|
\ title against a *regular expression*.\n\n The default value of this\
|
|
\ parameter is `null`.\n\n The accepted value for this parameter is a\
|
|
\ **case-insensitive** regular expression.\n\n (The base cost of calling\
|
|
\ this API endpoint with this parameter would be `10` credits.\n Each\
|
|
\ employee matched and returned would cost 3 extra credits.)\n "
|
|
example: (co)?-?founder
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: page_size
|
|
required: false
|
|
description:
|
|
"\n Limit the maximum results returned per API call.\n\n \
|
|
\ The default value of this parameter is `10`.\n\n Accepted values\
|
|
\ for this parameter is an integer ranging from `1` to `200000`.\n\n \
|
|
\ When `enrich_profiles=enrich`, this parameter accepts value ranging from\
|
|
\ `1` to `10` and the default value is `10`.\n "
|
|
example: '10'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: employment_status
|
|
required: false
|
|
description:
|
|
"\n Parameter to tell the API to return past or current employees.\n\
|
|
\n Valid values are `current`, `past`, and `all`:\n\n * `current`\
|
|
\ (default) : lists current employees\n * `past` : lists past employees\n\
|
|
\ * `all` : lists current & past employees\n "
|
|
example: current
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: sort_by
|
|
required: false
|
|
description:
|
|
"\n Sort employees by recency.\n\n Valid values are:\n\
|
|
\ * `recently-joined` - Sort employees by their join date. The most recent\
|
|
\ employee is on the top of the list.\n * `recently-left` - Sort employees\
|
|
\ by their departure date. The most recent employee who had just left is\
|
|
\ on the top of this list.\n * `oldest` - Returns the oldest employees\
|
|
\ first. The oldest employee who had joined this company historically is\
|
|
\ on the top of this list.\n * `none` - The default value. Do not sort.\n\
|
|
\n 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.\n "
|
|
example: recently-joined
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: resolve_numeric_id
|
|
required: false
|
|
description:
|
|
"\n Enable support for Company Profile URLs with numerical\
|
|
\ IDs that you most frequently fetch from Sales Navigator. \n We achieve\
|
|
\ this by resolving numerical IDs into vanity IDs with cached company profiles\
|
|
\ from [LinkDB](https://nubela.co/proxycurl/linkdb). \n 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.\n \n This\
|
|
\ parameter accepts the following values:\n - `false` (default value)\
|
|
\ - Will not resolve numerical IDs.\n - `true` - Enable support for Company\
|
|
\ Profile URLs with numerical IDs. \n Costs an extra `2` credit on top\
|
|
\ of the base cost of the endpoint.\n "
|
|
example: 'false'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: url
|
|
required: true
|
|
description:
|
|
"\n URL of the LinkedIn Company Profile to target.\n\n \
|
|
\ URL should be in the format of `https://www.linkedin.com/company/<public_identifier>`\n\
|
|
\ "
|
|
example: https://www.linkedin.com/company/microsoft
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/EmployeeList'
|
|
example:
|
|
employees:
|
|
- profile_url: https://www.linkedin.com/in/williamhgates
|
|
profile:
|
|
public_identifier: williamhgates
|
|
profile_pic_url: https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647&v=beta&t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU
|
|
background_cover_image_url: null
|
|
first_name: Bill
|
|
last_name: Gates
|
|
full_name: Bill Gates
|
|
occupation: Co-chair at Bill & Melinda Gates Foundation
|
|
headline: Co-chair, Bill & Melinda Gates Foundation
|
|
summary:
|
|
Co-chair of the Bill & Melinda Gates Foundation. Founder
|
|
of Breakthrough Energy. Co-founder of Microsoft. Voracious reader.
|
|
Avid traveler. Active blogger.
|
|
country: US
|
|
country_full_name: United States of America
|
|
city: Seattle
|
|
state: Washington
|
|
experiences:
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at: null
|
|
company: 'Breakthrough Energy '
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/breakthrough-energy/
|
|
title: Founder
|
|
description: null
|
|
location: null
|
|
logo_url: https://media-exp1.licdn.com/dms/image/C4D0BAQGwD9vNu044FA/company-logo_400_400/0/1601560874941?e=1672876800&v=beta&t=VKb6OAHEwlnazKYKm4fc9go-y4zkUv2BT6tosOdQ54Y
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2000
|
|
ends_at: null
|
|
company: Bill & Melinda Gates Foundation
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/bill-&-melinda-gates-foundation/
|
|
title: Co-chair
|
|
description: null
|
|
location: null
|
|
logo_url: https://media-exp1.licdn.com/dms/image/C4E0BAQE7Na_mKQhIJg/company-logo_400_400/0/1633731810932?e=1672876800&v=beta&t=Mz_ntwD4meCMcgo1L3JqDxBQRabFLIesd0Yz2ciAXNs
|
|
education:
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 1973
|
|
ends_at:
|
|
day: 31
|
|
month: 12
|
|
year: 1975
|
|
field_of_study: null
|
|
degree_name: null
|
|
school: Harvard University
|
|
school_linkedin_profile_url: null
|
|
description: null
|
|
logo_url: https://media-exp1.licdn.com/dms/image/C4E0BAQF5t62bcL0e9g/company-logo_400_400/0/1519855919126?e=1672876800&v=beta&t=9twXof1JlnNHfFprrDMi-C1Kp55HTT4ahINKHRflUHw
|
|
- starts_at: null
|
|
ends_at: null
|
|
field_of_study: null
|
|
degree_name: null
|
|
school: Lakeside School
|
|
school_linkedin_profile_url: null
|
|
description: null
|
|
logo_url: https://media-exp1.licdn.com/dms/image/C4D0BAQENlfOPKBEk3Q/company-logo_400_400/0/1519856497259?e=1672876800&v=beta&t=v7nJTPaJMfH7WOBjb22dyvNKxAgdPdVd8uLCUkMB1LQ
|
|
languages: []
|
|
accomplishment_organisations: []
|
|
accomplishment_publications: []
|
|
accomplishment_honors_awards: []
|
|
accomplishment_patents: []
|
|
accomplishment_courses: []
|
|
accomplishment_projects: []
|
|
accomplishment_test_scores: []
|
|
volunteer_work: []
|
|
certifications: []
|
|
connections: null
|
|
people_also_viewed: []
|
|
recommendations: []
|
|
activities: []
|
|
similarly_named_profiles: []
|
|
articles: []
|
|
groups: []
|
|
last_updated: '2023-10-26T11:34:30Z'
|
|
next_page: null
|
|
description: List of employees
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Company API
|
|
operationId: Employee Listing Endpoint
|
|
summary: Employee Listing Endpoint
|
|
/api/linkedin/company/employees/count:
|
|
get:
|
|
description: 'Cost: 1 credit / successful request.
|
|
|
|
Get a number of total employees of a Company.
|
|
|
|
|
|
Get an employee count of this company from various sources.'
|
|
parameters:
|
|
- in: query
|
|
name: use_cache
|
|
required: false
|
|
description:
|
|
"\n `if-present`: The default behavior. Fetches data from\
|
|
\ LinkDB cache regardless of age of profile.\n\n `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.\n "
|
|
example: if-present
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: linkedin_employee_count
|
|
required: false
|
|
description:
|
|
"\n Option to include a scraped employee count value from\
|
|
\ the target company's LinkedIn profile.\n\n Valid values are `include`\
|
|
\ and `exclude`:\n\n * `exclude` (default) : To exclude the scraped employee\
|
|
\ count.\n * `include` : To include the scraped employee count.\n\n \
|
|
\ Costs an extra `1` credit on top of the base cost of the endpoint.\n\
|
|
\ "
|
|
example: include
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: employment_status
|
|
required: false
|
|
description:
|
|
"\n Parameter to tell the API to filter past or current employees.\n\
|
|
\n Valid values are `current`, `past`, and `all`:\n\n * `current`\
|
|
\ (default) : count current employees\n * `past` : count past employees\n\
|
|
\ * `all` : count current & past employees\n "
|
|
example: current
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: url
|
|
required: true
|
|
description:
|
|
"\n URL of the LinkedIn Company Profile to target.\n\n \
|
|
\ URL should be in the format of `https://www.linkedin.com/company/<public_identifier>`\n\
|
|
\ "
|
|
example: https://www.linkedin.com/company/apple/
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/EmployeeCount'
|
|
example:
|
|
linkedin_employee_count: 529274
|
|
linkdb_employee_count: 3
|
|
description: Number of employees in a company
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Company API
|
|
operationId: Employee Count Endpoint
|
|
summary: Employee Count Endpoint
|
|
/api/linkedin/person/profile-picture:
|
|
get:
|
|
description: 'Cost: 0 credit / successful request.
|
|
|
|
Get the profile picture of a person.
|
|
|
|
|
|
Profile pictures are served from cached people profiles found within [LinkDB](https://nubela.co/proxycurl/linkdb).
|
|
|
|
If the profile does not exist within [LinkDB](https://nubela.co/proxycurl/linkdb),
|
|
then the API will return a `404` status code.'
|
|
parameters:
|
|
- in: query
|
|
name: linkedin_person_profile_url
|
|
required: true
|
|
description:
|
|
"\n LinkedIn Profile URL of the person that you are trying\
|
|
\ to get the profile picture of.\n "
|
|
example: https://www.linkedin.com/in/williamhgates/
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/ProfilePicture'
|
|
example:
|
|
tmp_profile_pic_url: https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647&v=beta&t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU
|
|
description: Profile picture of a person
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- People API
|
|
operationId: Person Profile Picture Endpoint
|
|
summary: Person Profile Picture Endpoint
|
|
/api/linkedin/company/profile-picture:
|
|
get:
|
|
description: 'Cost: 0 credit / successful request.
|
|
|
|
Get the profile picture of a company.
|
|
|
|
|
|
Profile pictures are served from cached company profiles found within [LinkDB](https://nubela.co/proxycurl/linkdb).
|
|
|
|
If the profile does not exist within [LinkDB](https://nubela.co/proxycurl/linkdb),
|
|
then the API will return a `404` status code.'
|
|
parameters:
|
|
- in: query
|
|
name: linkedin_company_profile_url
|
|
required: true
|
|
description:
|
|
"\n LinkedIn Profile URL of the company that you are trying\
|
|
\ to get the profile picture of.\n "
|
|
example: https://www.linkedin.com/company/apple/
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/ProfilePicture'
|
|
example:
|
|
tmp_profile_pic_url: https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647&v=beta&t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU
|
|
description: Profile picture of a company
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Company API
|
|
operationId: Company Profile Picture Endpoint
|
|
summary: Company Profile Picture Endpoint
|
|
/api/linkedin/profile/resolve:
|
|
get:
|
|
description: 'Cost: 2 credits / successful request.
|
|
|
|
Look up a person with a name and company information.'
|
|
parameters:
|
|
- in: query
|
|
name: similarity_checks
|
|
required: false
|
|
description:
|
|
"\n Controls whether the API endpoint performs\n similarity\
|
|
\ comparisons between the input parameters\n and the results or simply\
|
|
\ returns the closest match.\n For instance, if you are searching for\
|
|
\ a person named\n \"Ben Chad\", and the closest result we have is \"\
|
|
Chavvy\n Plum\", our similarity checks will discard the obviously\n \
|
|
\ incorrect result and return `null` instead of a false\n positive.\n\
|
|
\n Include similarity checks to eliminate false positives.\n However,\
|
|
\ be aware that this might yield fewer results\n as false positives are\
|
|
\ discarded. Credits will still be\n deducted even if we return `null`.\n\
|
|
\n You can choose to skip similarity checks, in which\n case no credits\
|
|
\ will be charged if we return `null`.\n\n This parameter accepts the\
|
|
\ following values:\n * `include` (default) - Perform similarity checks\
|
|
\ and\n discard false positives. Credits will be deducted even\n if\
|
|
\ we return null .\n * `skip` - Bypass similarity checks. No credits\
|
|
\ will be\n deducted if no results are returned.\n "
|
|
example: include
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: enrich_profile
|
|
required: false
|
|
description:
|
|
"\n Enrich the result with a cached profile of the lookup\
|
|
\ result.\n\n The valid values are:\n\n * `skip` (default): do not\
|
|
\ enrich the results with cached profile data\n * `enrich`: enriches\
|
|
\ the result with cached profile data\n\n Calling this API endpoint with\
|
|
\ this parameter would add 1 credit.\n\n If you require [fresh profile\
|
|
\ data](https://nubela.co/blog/how-fresh-are-profiles-returned-by-proxycurl-api/),\n\
|
|
\ please chain this API call with the [People Profile Endpoint](https://nubela.co/proxycurl/docs#people-api-person-profile-endpoint)\
|
|
\ with the `use_cache=if-recent` parameter.\n "
|
|
example: enrich
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: company_domain
|
|
required: true
|
|
description: Company name or domain
|
|
example: gatesfoundation.org
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: location
|
|
required: false
|
|
description:
|
|
"\n The location of this user.\n\n Name of country, city\
|
|
\ or state.\n "
|
|
example: Seattle
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: title
|
|
required: false
|
|
description: Title that user is holding at his/her current job
|
|
example: Co-chair
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: last_name
|
|
required: false
|
|
description: Last name of the user
|
|
example: Gates
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: first_name
|
|
required: true
|
|
description: First name of the user
|
|
example: Bill
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/PersonLookupUrlEnrichResult'
|
|
example:
|
|
url: https://www.linkedin.com/in/senatormarty
|
|
profile:
|
|
public_identifier: johnrmarty
|
|
profile_pic_url: https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647&v=beta&t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI
|
|
background_cover_image_url: https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647&v=beta&t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU
|
|
first_name: John
|
|
last_name: Marty
|
|
full_name: John Marty
|
|
follower_count: null
|
|
occupation: Co-Founder at Freedom Fund Real Estate
|
|
headline: Financial Freedom through Real Estate - LinkedIn Top Voice
|
|
summary:
|
|
"Most people go through life lost, disengaged, and unhappy\
|
|
\ at work and in their lives - I'm 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's\n\nQ: Can you speak at my Company, University, event or\
|
|
\ podcast?\nA: I'd love to! I've 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'm a #3 (The Achiever)\n\nLETS CONNECT:\n\
|
|
\u2611\uFE0F Email: JohnRmarty@gmail.com (don't forget that \"\
|
|
R\"....The other guy gets my emails all the time)"
|
|
country: US
|
|
country_full_name: United States of America
|
|
city: Seattle
|
|
state: Washington
|
|
experiences:
|
|
- starts_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2021
|
|
ends_at: null
|
|
company: Freedom Fund Real Estate
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/freedomfund
|
|
company_facebook_profile_url: null
|
|
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.
|
|
|
|
|
|
Website: https://www.freedomfundinvestments.com/home'
|
|
location: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647&v=beta&t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2021
|
|
ends_at: null
|
|
company: Mindset Reset Podcast
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/mindset-reset-podcast
|
|
company_facebook_profile_url: null
|
|
title: Founder
|
|
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"
|
|
location: Denver, Colorado, United States
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQF9QJVQm3SOvA/company-logo_100_100/0/1614527476576?e=2147483647&v=beta&t=m3tx83nMN-E3XQFoJG0Wmch8U4qKnJ9i--5NSAfffC0
|
|
education:
|
|
- 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/
|
|
school_facebook_profile_url: null
|
|
description: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQGVi9eAHgWxFw/company-logo_100_100/0/1673448029676?e=2147483647&v=beta&t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE
|
|
grade: null
|
|
activities_and_societies: null
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at:
|
|
day: 31
|
|
month: 12
|
|
year: 2015
|
|
field_of_study: School of Software Development
|
|
degree_name: null
|
|
school: Galvanize Inc
|
|
school_linkedin_profile_url: https://www.linkedin.com/school/galvanize-it/
|
|
school_facebook_profile_url: null
|
|
description:
|
|
rails, ruby, rspec, capybara, bootstrap, css, html,
|
|
api integration, Jquery, Javascript
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQFKNxOZ4X0g8Q/company-logo_100_100/0/1670610916338?e=2147483647&v=beta&t=t7ImfhmsuIJ7HJGHEbPJ2suxdslKhzp9v-5h9_G4sWE
|
|
grade: null
|
|
activities_and_societies: null
|
|
languages:
|
|
- English
|
|
- Spanish
|
|
accomplishment_organisations: []
|
|
accomplishment_publications: []
|
|
accomplishment_honors_awards: []
|
|
accomplishment_patents: []
|
|
accomplishment_courses: []
|
|
accomplishment_projects:
|
|
- starts_at:
|
|
day: 1
|
|
month: 3
|
|
year: 2015
|
|
ends_at: null
|
|
title: gMessenger
|
|
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's message content to the page in
|
|
real time, with no page refresh required. gMessenger also includes
|
|
custom authentication with three different permissions levels.
|
|
url: http://gmessenger.herokuapp.com/
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at: null
|
|
title: Taskly
|
|
description:
|
|
A task and project management responsive web app
|
|
utilizing Ruby on Rails - CSS and HTML
|
|
url: https://hidden-coast-7204.herokuapp.com/
|
|
accomplishment_test_scores: []
|
|
volunteer_work: []
|
|
certifications:
|
|
- starts_at: null
|
|
ends_at: null
|
|
name:
|
|
SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean
|
|
Practices in the SAFe Enterprise)
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scaled Agile, Inc.
|
|
url: null
|
|
- starts_at: null
|
|
ends_at: null
|
|
name: SCRUM Alliance Certified Product Owner
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scrum Alliance
|
|
url: null
|
|
connections: 500
|
|
people_also_viewed: []
|
|
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've 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!"
|
|
activities:
|
|
- 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
|
|
similarly_named_profiles:
|
|
- 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
|
|
- name: John Marty
|
|
link: https://www.linkedin.com/in/senatormarty
|
|
summary: null
|
|
location: St Paul, MN
|
|
articles: []
|
|
groups: []
|
|
last_updated: '2023-10-26T11:34:30Z'
|
|
description: LinkedIn (Person) Profile URL
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- People API
|
|
operationId: Person Lookup Endpoint
|
|
summary: Person Lookup Endpoint
|
|
/api/v2/linkedin/company/job:
|
|
get:
|
|
description: 'Cost: 2 credits / successful request.
|
|
|
|
List jobs posted by a company on LinkedIn'
|
|
parameters:
|
|
- in: query
|
|
name: job_type
|
|
required: false
|
|
description:
|
|
"\n The nature of the job.\n It accepts the following 7\
|
|
\ case-insensitive values only:\n - `full-time`\n - `part-time`\n\
|
|
\ - `contract`\n - `internship`\n - `temporary`\n - `volunteer`\n\
|
|
\ - `anything` (default)\n "
|
|
example: anything
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: experience_level
|
|
required: false
|
|
description:
|
|
"\n The experience level needed for the job.\n It accepts\
|
|
\ the following 6 case-insensitive values only:\n - `internship`\n \
|
|
\ - `entry_level`\n - `associate`\n - `mid_senior_level`\n - `director`\n\
|
|
\ - `anything` (default)\n "
|
|
example: entry_level
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: when
|
|
required: false
|
|
description:
|
|
"\n The time when the job is posted,\n It accepts the following\
|
|
\ case-insensitive values only:\n - `yesterday`\n - `past-week`\n\
|
|
\ - `past-month`\n - `anytime` (default)\n "
|
|
example: past-month
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: flexibility
|
|
required: false
|
|
description:
|
|
"\n The flexibility of the job.\n It accepts the following\
|
|
\ 3 case insensitive values only:\n - `remote`\n - `on-site`\n \
|
|
\ - `hybrid`\n - `anything` (default)\n "
|
|
example: remote
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: geo_id
|
|
required: false
|
|
description:
|
|
"\n The `geo_id` of the location to search for.\n For example,\
|
|
\ `92000000` is the `geo_id` of world wide.\n\n See [this article](https://nubela.co/blog/how-to-fetch-geo_id-parameter-for-the-job-api/?utm_source=blog&utm_medium=web&utm_campaign=docs-redirect-to-geo_id-article)\
|
|
\ as to how you may be able to match regions to `geo_id` input values.\n\
|
|
\ "
|
|
example: '92000000'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: keyword
|
|
required: false
|
|
description: "\n The keyword to search for.\n "
|
|
example: software engineer
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: search_id
|
|
required: false
|
|
description:
|
|
"\n The `search_id` of the company on LinkedIn.\n You can\
|
|
\ get the `search_id` of a LinkedIn company via\n [Company Profile API](#company-api-company-profile-endpoint).\n\
|
|
\ "
|
|
example: '1035'
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/JobListPage'
|
|
example:
|
|
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
|
|
next_page_no: 1
|
|
next_page_api_url: http://nubela.co/proxycurl/proxycurl/api/v2/linkedin/company/job?pagination=eyJwYWdlIjogMX0&search_id=1035
|
|
previous_page_no: null
|
|
previous_page_api_url: null
|
|
description: List of open job position
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Jobs API
|
|
operationId: Job Search Endpoint
|
|
summary: Job Search Endpoint
|
|
/api/v2/linkedin/company/job/count:
|
|
get:
|
|
description: 'Cost: 2 credits / successful request.
|
|
|
|
Count number of jobs posted by a company on LinkedIn'
|
|
parameters:
|
|
- in: query
|
|
name: job_type
|
|
required: false
|
|
description:
|
|
"\n The nature of the job.\n It accepts the following 7\
|
|
\ case-insensitive values only:\n - `full-time`\n - `part-time`\n\
|
|
\ - `contract`\n - `internship`\n - `temporary`\n - `volunteer`\n\
|
|
\ - `anything` (default)\n "
|
|
example: entry_level
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: experience_level
|
|
required: false
|
|
description:
|
|
"\n The experience level needed for the job.\n It accepts\
|
|
\ the following 6 case-insensitive values only:\n - `internship`\n \
|
|
\ - `entry_level`\n - `associate`\n - `mid_senior_level`\n - `director`\n\
|
|
\ - `anything` (default)\n "
|
|
example: entry_level
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: when
|
|
required: false
|
|
description:
|
|
"\n The time when the job is posted,\n It accepts the following\
|
|
\ case-insensitive values only:\n - `yesterday`\n - `past-week`\n\
|
|
\ - `past-month`\n - `anytime` (default)\n "
|
|
example: past-month
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: flexibility
|
|
required: false
|
|
description:
|
|
"\n The flexibility of the job.\n It accepts the following\
|
|
\ 3 case insensitive values only:\n - `remote`\n - `on-site`\n \
|
|
\ - `hybrid`\n - `anything` (default)\n "
|
|
example: remote
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: geo_id
|
|
required: false
|
|
description:
|
|
"\n The `geo_id` of the location to search for.\n For example,\
|
|
\ `92000000` is the `geo_id` of world wide.\n\n See [this article](https://nubela.co/blog/how-to-fetch-geo_id-parameter-for-the-job-api/?utm_source=blog&utm_medium=web&utm_campaign=docs-redirect-to-geo_id-article)\
|
|
\ as to how you may be able to match regions to `geo_id` input values.\n\
|
|
\ "
|
|
example: '92000000'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: keyword
|
|
required: false
|
|
description: "\n The keyword to search for.\n "
|
|
example: software engineer
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: search_id
|
|
required: false
|
|
description:
|
|
"\n The `search_id` of the company on LinkedIn.\n You can\
|
|
\ get the `search_id` of a LinkedIn company via\n [Company Profile API](#company-api-company-profile-endpoint).\n\
|
|
\ "
|
|
example: '1035'
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/JobListCount'
|
|
example:
|
|
count: 887622
|
|
description: Count number of jobs posted
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Jobs API
|
|
operationId: Jobs Listing Count Endpoint
|
|
summary: Jobs Listing Count Endpoint
|
|
/api/find/company/role/:
|
|
get:
|
|
description:
|
|
"Cost: 3 credits / successful request.\nReturns the profile of\
|
|
\ a person who most closely matches a specified role\nin a company. For instance,\
|
|
\ it can be used to identify the \"CTO\" of\n\"Apple\". The endpoint yields\
|
|
\ a single result that represents the closest\nmatch. For a detailed comparison\
|
|
\ between this API endpoint and the\n[Employee Search Endpoint](#company-api-employee-search-endpoint)\n\
|
|
or the [Person Search Endpoint](#search-api-person-search-endpoint),\nrefer\
|
|
\ to [this article](\n https://nubela.co/blog/what-is-the-difference-between-the-person-search-endpoint-role-lookup-endpoint-and-the-employee-search-endpoint)."
|
|
parameters:
|
|
- in: query
|
|
name: enrich_profile
|
|
required: false
|
|
description:
|
|
"\n Enrich the result with a cached profile of the lookup\
|
|
\ result.\n\n The valid values are:\n\n * `skip` (default): do not\
|
|
\ enrich the results with cached profile data\n * `enrich`: enriches\
|
|
\ the result with cached profile data\n\n Calling this API endpoint with\
|
|
\ this parameter would add 1 credit.\n\n If you require [fresh profile\
|
|
\ data](https://nubela.co/blog/how-fresh-are-profiles-returned-by-proxycurl-api/),\n\
|
|
\ please chain this API call with the [Person Profile Endpoint](#people-api-person-profile-endpoint)\
|
|
\ with the `use_cache=if-recent` parameter.\n "
|
|
example: enrich
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: role
|
|
required: true
|
|
description: Role of the profile that you are lookin up
|
|
example: ceo
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: company_name
|
|
required: true
|
|
description: Name of the company that you are searching for
|
|
example: nubela
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/RoleSearchEnrichedResult'
|
|
example:
|
|
linkedin_profile_url: https://www.linkedin.com/in/senatormarty
|
|
profile:
|
|
public_identifier: johnrmarty
|
|
profile_pic_url: https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647&v=beta&t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI
|
|
background_cover_image_url: https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647&v=beta&t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU
|
|
first_name: John
|
|
last_name: Marty
|
|
full_name: John Marty
|
|
follower_count: null
|
|
occupation: Co-Founder at Freedom Fund Real Estate
|
|
headline: Financial Freedom through Real Estate - LinkedIn Top Voice
|
|
summary:
|
|
"Most people go through life lost, disengaged, and unhappy\
|
|
\ at work and in their lives - I'm 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's\n\nQ: Can you speak at my Company, University, event or\
|
|
\ podcast?\nA: I'd love to! I've 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'm a #3 (The Achiever)\n\nLETS CONNECT:\n\
|
|
\u2611\uFE0F Email: JohnRmarty@gmail.com (don't forget that \"\
|
|
R\"....The other guy gets my emails all the time)"
|
|
country: US
|
|
country_full_name: United States of America
|
|
city: Seattle
|
|
state: Washington
|
|
experiences:
|
|
- starts_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2021
|
|
ends_at: null
|
|
company: Freedom Fund Real Estate
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/freedomfund
|
|
company_facebook_profile_url: null
|
|
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.
|
|
|
|
|
|
Website: https://www.freedomfundinvestments.com/home'
|
|
location: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647&v=beta&t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2021
|
|
ends_at: null
|
|
company: Mindset Reset Podcast
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/mindset-reset-podcast
|
|
company_facebook_profile_url: null
|
|
title: Founder
|
|
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"
|
|
location: Denver, Colorado, United States
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQF9QJVQm3SOvA/company-logo_100_100/0/1614527476576?e=2147483647&v=beta&t=m3tx83nMN-E3XQFoJG0Wmch8U4qKnJ9i--5NSAfffC0
|
|
education:
|
|
- 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/
|
|
school_facebook_profile_url: null
|
|
description: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQGVi9eAHgWxFw/company-logo_100_100/0/1673448029676?e=2147483647&v=beta&t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE
|
|
grade: null
|
|
activities_and_societies: null
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at:
|
|
day: 31
|
|
month: 12
|
|
year: 2015
|
|
field_of_study: School of Software Development
|
|
degree_name: null
|
|
school: Galvanize Inc
|
|
school_linkedin_profile_url: https://www.linkedin.com/school/galvanize-it/
|
|
school_facebook_profile_url: null
|
|
description:
|
|
rails, ruby, rspec, capybara, bootstrap, css, html,
|
|
api integration, Jquery, Javascript
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQFKNxOZ4X0g8Q/company-logo_100_100/0/1670610916338?e=2147483647&v=beta&t=t7ImfhmsuIJ7HJGHEbPJ2suxdslKhzp9v-5h9_G4sWE
|
|
grade: null
|
|
activities_and_societies: null
|
|
languages:
|
|
- English
|
|
- Spanish
|
|
accomplishment_organisations: []
|
|
accomplishment_publications: []
|
|
accomplishment_honors_awards: []
|
|
accomplishment_patents: []
|
|
accomplishment_courses: []
|
|
accomplishment_projects:
|
|
- starts_at:
|
|
day: 1
|
|
month: 3
|
|
year: 2015
|
|
ends_at: null
|
|
title: gMessenger
|
|
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's message content to the page in
|
|
real time, with no page refresh required. gMessenger also includes
|
|
custom authentication with three different permissions levels.
|
|
url: http://gmessenger.herokuapp.com/
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at: null
|
|
title: Taskly
|
|
description:
|
|
A task and project management responsive web app
|
|
utilizing Ruby on Rails - CSS and HTML
|
|
url: https://hidden-coast-7204.herokuapp.com/
|
|
accomplishment_test_scores: []
|
|
volunteer_work: []
|
|
certifications:
|
|
- starts_at: null
|
|
ends_at: null
|
|
name:
|
|
SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean
|
|
Practices in the SAFe Enterprise)
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scaled Agile, Inc.
|
|
url: null
|
|
- starts_at: null
|
|
ends_at: null
|
|
name: SCRUM Alliance Certified Product Owner
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scrum Alliance
|
|
url: null
|
|
connections: 500
|
|
people_also_viewed: []
|
|
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've 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!"
|
|
activities:
|
|
- 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
|
|
similarly_named_profiles:
|
|
- 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
|
|
- name: John Marty
|
|
link: https://www.linkedin.com/in/senatormarty
|
|
summary: null
|
|
location: St Paul, MN
|
|
articles: []
|
|
groups: []
|
|
last_updated: '2023-10-26T11:34:30Z'
|
|
description: LinkedIn (Person) Profile URL
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- People API
|
|
operationId: Role Lookup Endpoint
|
|
summary: Role Lookup Endpoint
|
|
/api/linkedin/company/resolve:
|
|
get:
|
|
description:
|
|
"Cost: 2 credits / successful request.\nResolve Company LinkedIn\
|
|
\ Profile from company name,\n domain name and location."
|
|
parameters:
|
|
- in: query
|
|
name: company_location
|
|
required: false
|
|
description:
|
|
"\n The location / region of company.\n ISO 3166-1 alpha-2\
|
|
\ codes\n "
|
|
example: sg
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: company_domain
|
|
required: false
|
|
description: 'Company website or Company domain
|
|
|
|
Requires either `company_domain` or `company_name`'
|
|
example: accenture.com
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: company_name
|
|
required: false
|
|
description: 'Company Name
|
|
|
|
Requires either `company_domain` or `company_name`'
|
|
example: Accenture
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: enrich_profile
|
|
required: false
|
|
description:
|
|
"\n Enrich the result with a cached profile of the lookup\
|
|
\ result.\n\n The valid values are:\n\n * `skip` (default): do not\
|
|
\ enrich the results with cached profile data\n * `enrich`: enriches\
|
|
\ the result with cached profile data\n\n Calling this API endpoint with\
|
|
\ this parameter would add 1 credit.\n\n If you require [fresh profile\
|
|
\ data](https://nubela.co/blog/how-fresh-are-profiles-returned-by-proxycurl-api/),\n\
|
|
\ please chain this API call with the [Company Profile Endpoint](https://nubela.co/proxycurl/docs#company-api-company-profile-endpoint)\
|
|
\ with the `use_cache=if-recent` parameter.\n "
|
|
example: enrich
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/CompanyUrlEnrichResult'
|
|
example:
|
|
url: https://www.linkedin.com/company/accenture
|
|
profile:
|
|
linkedin_internal_id: '1033'
|
|
description:
|
|
"Accenture is a global professional services company\
|
|
\ with leading capabilities in digital, cloud, and security. Combining\
|
|
\ unmatched experience and specialized skills across more than\
|
|
\ 40 industries, we offer Strategy and Consulting, Technology\
|
|
\ and Operations Services, and Accenture Song\u2014all powered\
|
|
\ by the world\u2019s largest network of Advanced Technology and\
|
|
\ Intelligent Operations centers. \n\nOur people deliver on the\
|
|
\ promise of technology and human ingenuity every day, serving\
|
|
\ clients in more than 120 countries. We embrace the power of\
|
|
\ change to create value and shared success for our clients, people,\
|
|
\ shareholders, partners, and communities. \n\nVisit us at accenture.com."
|
|
website: http://www.accenture.com
|
|
industry: Business Consulting and Services
|
|
company_size:
|
|
- 10001
|
|
- null
|
|
company_size_on_linkedin: 541251
|
|
hq:
|
|
country: IE
|
|
city: Dublin 2
|
|
postal_code: null
|
|
line_1: Grand Canal Harbour
|
|
is_hq: true
|
|
state: null
|
|
company_type: PUBLIC_COMPANY
|
|
founded_year: null
|
|
specialities:
|
|
- Management Consulting
|
|
- Systems Integration and Technology
|
|
locations:
|
|
- country: IE
|
|
city: Dublin 2
|
|
postal_code: null
|
|
line_1: Grand Canal Harbour
|
|
is_hq: true
|
|
state: null
|
|
- country: US
|
|
city: San Francisco
|
|
postal_code: '94105'
|
|
line_1: 415 Mission Street Floor 31-34
|
|
is_hq: false
|
|
state: California
|
|
name: Accenture
|
|
tagline: null
|
|
universal_name_id: accenture
|
|
profile_pic_url: https://media.licdn.com/dms/image/D4E0BAQGTUswcRlgg9A/company-logo_200_200/0/1689352303421/accenture_logo?e=2147483647&v=beta&t=cjQy2p9bf0c2mJqCNVzaiLqdByE0zboCX3vY5m4gRuY
|
|
background_cover_image_url: https://media.licdn.com/dms/image/D4E3DAQEJ2lIxxNO81Q/image-scale_191_1128/0/1689359170613/accenture_cover?e=1698901200&v=beta&t=8ygpwsa5GjMoubooCGg1MqfGomnBaU9WHwnI3_Ek0_0
|
|
search_id: '1033'
|
|
similar_companies:
|
|
- name: Deloitte
|
|
link: https://www.linkedin.com/company/deloitte
|
|
industry: Business Consulting and Services
|
|
location: null
|
|
- name: Tata Consultancy Services
|
|
link: https://in.linkedin.com/company/tata-consultancy-services
|
|
industry: IT Services and IT Consulting
|
|
location: Mumbai, Maharashtra
|
|
affiliated_companies:
|
|
- name: Accenture in India
|
|
link: https://in.linkedin.com/company/accentureindia
|
|
industry: IT Services and IT Consulting
|
|
location: Bengaluru, Karnatka
|
|
- name: Accenture Brasil
|
|
link: https://br.linkedin.com/company/accenturebrasil
|
|
industry: IT Services and IT Consulting
|
|
location: "S\xE3o Paulo, S\xE3o Paulo"
|
|
updates:
|
|
- article_link: null
|
|
image: null
|
|
posted_on:
|
|
day: 25
|
|
month: 10
|
|
year: 2023
|
|
text: 'Explore #AccentureLifeTrends 2024 to learn more: https://accntu.re/3MfdMg4'
|
|
total_likes: 325
|
|
- article_link: null
|
|
image: https://media.licdn.com/dms/image/D5610AQEMoO_uNVz5BQ/ads-video-thumbnail_720_1280/0/1698154984087?e=1698901200&v=beta&t=WTxhLNSbSM-UBnFIcqYX4bdVhVUD6OoOoffR0xQnlDA
|
|
posted_on:
|
|
day: 25
|
|
month: 10
|
|
year: 2023
|
|
text:
|
|
"The ability to learn new things, without forgetting those\
|
|
\ that came before, is a huge differentiator between the #AI\
|
|
\ we're familiar with, and the #GenerativeAI powered by foundation\
|
|
\ models that we're seeing now.\n \nDiscover the trends shaping\
|
|
\ the next decade: https://accntu.re/474YxOH\n \n#TechVision2023"
|
|
total_likes: 541
|
|
follower_count: 11125167
|
|
acquisitions: null
|
|
exit_data: null
|
|
extra: null
|
|
funding_data: null
|
|
categories: null
|
|
last_updated: '2023-10-26T11:33:24Z'
|
|
description: LinkedIn (Company) Profile URL
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Company API
|
|
operationId: Company Lookup Endpoint
|
|
summary: Company Lookup Endpoint
|
|
/api/linkedin/company/employee/search/:
|
|
get:
|
|
description: 'Cost: 10 credits / successful request.
|
|
|
|
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](#company-api-employee-listing-endpoint).
|
|
|
|
This API endpoint is powered by [LinkDB](https://nubela.co/proxycurl/linkdb),
|
|
our comprehensive dataset of people
|
|
|
|
and company profiles. For a detailed comparison between this API endpoint
|
|
|
|
and the [Role Lookup Endpoint](#people-api-role-lookup-endpoint) or the [Person
|
|
Search Endpoint](#search-api-person-search-endpoint), refer to [this article](https://nubela.co/blog/what-is-the-difference-between-the-person-search-endpoint-role-lookup-endpoint-and-the-employee-search-endpoint).'
|
|
parameters:
|
|
- in: query
|
|
name: page_size
|
|
required: false
|
|
description:
|
|
"\n Tune the maximum results returned per API call.\n The\
|
|
\ default value of this parameter is `200000`.\n Accepted values for\
|
|
\ this parameter is an integer ranging from `1` to `200000`.\n When `enrich_profiles=enrich`,\
|
|
\ this parameter accepts value ranging from `1` to `10` and the default\
|
|
\ value is `100`.\n "
|
|
example: '10'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: linkedin_company_profile_url
|
|
required: true
|
|
description: "\n LinkedIn Profile URL of the target company.\n "
|
|
example: https://www.linkedin.com/company/microsoft/
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: keyword_regex
|
|
required: true
|
|
description:
|
|
"\n Job title keyword to search for in regular expression\
|
|
\ format.\n\n The accepted value for this parameter is a **case-insensitive**\
|
|
\ regular expression.\n "
|
|
example: ceo|cto
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: country
|
|
required: false
|
|
description:
|
|
"\n 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.\n\n This parameter accepts a case-insensitive [Alpha-2\
|
|
\ ISO3166 country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).\n\
|
|
\n Costs an extra `3` credit per result returned.\n "
|
|
example: us
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: enrich_profiles
|
|
required: false
|
|
description:
|
|
"\n Get the full profile of employees instead of only their\
|
|
\ profile urls.\n\n Each request respond with a streaming response of\
|
|
\ profiles.\n\n The valid values are:\n \n * `skip` (default):\
|
|
\ lists employee's profile url\n * `enrich`: lists full profile of employees\n\
|
|
\n Calling this API endpoint with this parameter would add `1` credit\
|
|
\ per employee returned.\n "
|
|
example: enrich
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: resolve_numeric_id
|
|
required: false
|
|
description:
|
|
"\n Enable support for Company Profile URLs with numerical\
|
|
\ IDs that you most frequently fetch from Sales Navigator. \n We achieve\
|
|
\ this by resolving numerical IDs into vanity IDs with cached company profiles\
|
|
\ from [LinkDB](https://nubela.co/proxycurl/linkdb). \n 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.\n \n This\
|
|
\ parameter accepts the following values:\n - `false` (default value)\
|
|
\ - Will not resolve numerical IDs.\n - `true` - Enable support for Company\
|
|
\ Profile URLs with numerical IDs. \n Costs an extra `2` credit on top\
|
|
\ of the base cost of the endpoint.\n "
|
|
example: 'false'
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/EmployeeList'
|
|
example:
|
|
employees:
|
|
- profile_url: https://www.linkedin.com/in/satyanadella
|
|
profile:
|
|
public_identifier: williamhgates
|
|
profile_pic_url: https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647&v=beta&t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU
|
|
background_cover_image_url: null
|
|
first_name: Bill
|
|
last_name: Gates
|
|
full_name: Bill Gates
|
|
occupation: Co-chair at Bill & Melinda Gates Foundation
|
|
headline: Co-chair, Bill & Melinda Gates Foundation
|
|
summary:
|
|
Co-chair of the Bill & Melinda Gates Foundation. Founder
|
|
of Breakthrough Energy. Co-founder of Microsoft. Voracious reader.
|
|
Avid traveler. Active blogger.
|
|
country: US
|
|
country_full_name: United States of America
|
|
city: Seattle
|
|
state: Washington
|
|
experiences:
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at: null
|
|
company: 'Breakthrough Energy '
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/breakthrough-energy/
|
|
title: Founder
|
|
description: null
|
|
location: null
|
|
logo_url: https://media-exp1.licdn.com/dms/image/C4D0BAQGwD9vNu044FA/company-logo_400_400/0/1601560874941?e=1672876800&v=beta&t=VKb6OAHEwlnazKYKm4fc9go-y4zkUv2BT6tosOdQ54Y
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2000
|
|
ends_at: null
|
|
company: Bill & Melinda Gates Foundation
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/bill-&-melinda-gates-foundation/
|
|
title: Co-chair
|
|
description: null
|
|
location: null
|
|
logo_url: https://media-exp1.licdn.com/dms/image/C4E0BAQE7Na_mKQhIJg/company-logo_400_400/0/1633731810932?e=1672876800&v=beta&t=Mz_ntwD4meCMcgo1L3JqDxBQRabFLIesd0Yz2ciAXNs
|
|
education:
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 1973
|
|
ends_at:
|
|
day: 31
|
|
month: 12
|
|
year: 1975
|
|
field_of_study: null
|
|
degree_name: null
|
|
school: Harvard University
|
|
school_linkedin_profile_url: null
|
|
description: null
|
|
logo_url: https://media-exp1.licdn.com/dms/image/C4E0BAQF5t62bcL0e9g/company-logo_400_400/0/1519855919126?e=1672876800&v=beta&t=9twXof1JlnNHfFprrDMi-C1Kp55HTT4ahINKHRflUHw
|
|
- starts_at: null
|
|
ends_at: null
|
|
field_of_study: null
|
|
degree_name: null
|
|
school: Lakeside School
|
|
school_linkedin_profile_url: null
|
|
description: null
|
|
logo_url: https://media-exp1.licdn.com/dms/image/C4D0BAQENlfOPKBEk3Q/company-logo_400_400/0/1519856497259?e=1672876800&v=beta&t=v7nJTPaJMfH7WOBjb22dyvNKxAgdPdVd8uLCUkMB1LQ
|
|
languages: []
|
|
accomplishment_organisations: []
|
|
accomplishment_publications: []
|
|
accomplishment_honors_awards: []
|
|
accomplishment_patents: []
|
|
accomplishment_courses: []
|
|
accomplishment_projects: []
|
|
accomplishment_test_scores: []
|
|
volunteer_work: []
|
|
certifications: []
|
|
connections: null
|
|
people_also_viewed: []
|
|
recommendations: []
|
|
activities: []
|
|
similarly_named_profiles: []
|
|
articles: []
|
|
groups: []
|
|
last_updated: '2023-10-26T11:34:30Z'
|
|
next_page: null
|
|
description: List of employees
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Company API
|
|
operationId: Employee Search Endpoint
|
|
summary: Employee Search Endpoint
|
|
/api/linkedin/school/students/:
|
|
get:
|
|
description: 'Cost: 3 credits / student returned.
|
|
|
|
Get a list of students of a school or university.'
|
|
parameters:
|
|
- in: query
|
|
name: country
|
|
required: false
|
|
description:
|
|
"\n 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.\n\n This parameter accepts a case-insensitive [Alpha-2\
|
|
\ ISO3166 country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).\n\
|
|
\n Costs an extra `3` credit per result returned.\n "
|
|
example: us
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: enrich_profiles
|
|
required: false
|
|
description:
|
|
"\n Get the full profile of students instead of only their\
|
|
\ profile urls.\n\n Each request respond with a streaming response of\
|
|
\ profiles.\n\n The valid values are:\n \n * `skip` (default):\
|
|
\ lists student's profile url\n * `enrich`: lists full profile of students\n\
|
|
\n *Calling this API endpoint with this parameter would add `1` credit\
|
|
\ per student returned.*\n "
|
|
example: enrich
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: search_keyword
|
|
required: false
|
|
description:
|
|
"\n Filter students by their major by matching the student's\
|
|
\ major against a *regular expression*.\n\n The default value of this\
|
|
\ parameter is `null`.\n\n The accepted value for this parameter is a\
|
|
\ **case-insensitive** regular expression.\n\n (The base cost of calling\
|
|
\ this API endpoint with this parameter would be `10` credits.\n Each\
|
|
\ student matched and returned would cost `6` credits per student returned.)\n\
|
|
\ "
|
|
example: computer*|cs
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: page_size
|
|
required: false
|
|
description:
|
|
"\n Limit the maximum results returned per API call.\n\n \
|
|
\ The default value of this parameter is `10`.\n\n Accepted values\
|
|
\ for this parameter is an integer ranging from `1` to `200000`.\n\n \
|
|
\ When `enrich_profiles=enrich`, this parameter accepts value ranging from\
|
|
\ `1` to `10` and the default value is `10`.\n "
|
|
example: '10'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: student_status
|
|
required: false
|
|
description:
|
|
"\n Parameter to tell the API to return past or current students.\n\
|
|
\n Valid values are `current`, `past`, and `all`:\n\n * `current`\
|
|
\ (default) : lists current students\n * `past` : lists past students\n\
|
|
\ * `all` : lists current & past students\n "
|
|
example: current
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: sort_by
|
|
required: false
|
|
description:
|
|
"\n Sort students by matriculation or graduation dates.\n\n\
|
|
\ Valid values are:\n * `recently-matriculated` - Sort students by\
|
|
\ their matriculation date. Students who had had most recently started school\
|
|
\ is on the top of the list.\n * `recently-graduated` - Sort students\
|
|
\ by their graduation date. The most recently graduated student is on the\
|
|
\ top of this list.\n * `none` - The default value. Do not sort.\n\n\
|
|
\ 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.\n "
|
|
example: recently-matriculated
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: resolve_numeric_id
|
|
required: false
|
|
description:
|
|
"\n Enable support for School Profile URLs with numerical\
|
|
\ IDs that you most frequently fetch from Sales Navigator. \n We achieve\
|
|
\ this by resolving numerical IDs into vanity IDs with cached company profiles\
|
|
\ from [LinkDB](https://nubela.co/proxycurl/linkdb). \n 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.\n \n This\
|
|
\ parameter accepts the following values:\n - `false` (default value)\
|
|
\ - Will not resolve numerical IDs.\n - `true` - Enable support for School\
|
|
\ Profile URLs with numerical IDs. \n Costs an extra `2` credit on top\
|
|
\ of the base cost of the endpoint.\n "
|
|
example: 'false'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: linkedin_school_url
|
|
required: true
|
|
description:
|
|
"\n URL of the LinkedIn School Profile to target.\n\n URL\
|
|
\ should be in the format of `https://www.linkedin.com/school/<public_identifier>`\n\
|
|
\ "
|
|
example: https://www.linkedin.com/school/stanford-university
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/StudentList'
|
|
example:
|
|
students:
|
|
- profile_url: https://www.linkedin.com/in/johnrmarty
|
|
profile:
|
|
public_identifier: johnrmarty
|
|
profile_pic_url: https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647&v=beta&t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI
|
|
background_cover_image_url: https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647&v=beta&t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU
|
|
first_name: John
|
|
last_name: Marty
|
|
full_name: John Marty
|
|
follower_count: null
|
|
occupation: Co-Founder at Freedom Fund Real Estate
|
|
headline:
|
|
Financial Freedom through Real Estate - LinkedIn Top
|
|
Voice
|
|
summary:
|
|
"Most people go through life lost, disengaged, and unhappy\
|
|
\ at work and in their lives - I'm 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\n\
|
|
FAQ's\n\nQ: Can you speak at my Company, University, event or\
|
|
\ podcast?\nA: I'd love to! I've 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'm a #3 (The Achiever)\n\nLETS\
|
|
\ CONNECT:\n\u2611\uFE0F Email: JohnRmarty@gmail.com (don't\
|
|
\ forget that \"R\"....The other guy gets my emails all the\
|
|
\ time)"
|
|
country: US
|
|
country_full_name: United States of America
|
|
city: Seattle
|
|
state: Washington
|
|
experiences:
|
|
- starts_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2021
|
|
ends_at: null
|
|
company: Freedom Fund Real Estate
|
|
company_linkedin_profile_url: 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.
|
|
|
|
|
|
Website: https://www.freedomfundinvestments.com/home'
|
|
location: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647&v=beta&t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2021
|
|
ends_at: null
|
|
company: Mindset Reset Podcast
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/mindset-reset-podcast
|
|
title: Founder
|
|
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"
|
|
location: Denver, Colorado, United States
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQF9QJVQm3SOvA/company-logo_100_100/0/1614527476576?e=2147483647&v=beta&t=m3tx83nMN-E3XQFoJG0Wmch8U4qKnJ9i--5NSAfffC0
|
|
education:
|
|
- 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&v=beta&t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE
|
|
grade: null
|
|
activities_and_societies: null
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at:
|
|
day: 31
|
|
month: 12
|
|
year: 2015
|
|
field_of_study: School of Software Development
|
|
degree_name: null
|
|
school: Galvanize Inc
|
|
school_linkedin_profile_url: https://www.linkedin.com/school/galvanize-it/
|
|
description:
|
|
rails, ruby, rspec, capybara, bootstrap, css, html,
|
|
api integration, Jquery, Javascript
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQFKNxOZ4X0g8Q/company-logo_100_100/0/1670610916338?e=2147483647&v=beta&t=t7ImfhmsuIJ7HJGHEbPJ2suxdslKhzp9v-5h9_G4sWE
|
|
grade: null
|
|
activities_and_societies: null
|
|
languages:
|
|
- English
|
|
- Spanish
|
|
accomplishment_organisations: []
|
|
accomplishment_publications: []
|
|
accomplishment_honors_awards: []
|
|
accomplishment_patents: []
|
|
accomplishment_courses: []
|
|
accomplishment_projects:
|
|
- starts_at:
|
|
day: 1
|
|
month: 3
|
|
year: 2015
|
|
ends_at: null
|
|
title: gMessenger
|
|
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's message content to the page in
|
|
real time, with no page refresh required. gMessenger also
|
|
includes custom authentication with three different permissions
|
|
levels.
|
|
url: http://gmessenger.herokuapp.com/
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at: null
|
|
title: Taskly
|
|
description:
|
|
A task and project management responsive web app
|
|
utilizing Ruby on Rails - CSS and HTML
|
|
url: https://hidden-coast-7204.herokuapp.com/
|
|
accomplishment_test_scores: []
|
|
volunteer_work: []
|
|
certifications:
|
|
- starts_at: null
|
|
ends_at: null
|
|
name:
|
|
SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean
|
|
Practices in the SAFe Enterprise)
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scaled Agile, Inc.
|
|
url: null
|
|
- starts_at: null
|
|
ends_at: null
|
|
name: SCRUM Alliance Certified Product Owner
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scrum Alliance
|
|
url: null
|
|
connections: 500
|
|
people_also_viewed: []
|
|
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've 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!"
|
|
activities:
|
|
- 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
|
|
similarly_named_profiles:
|
|
- 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
|
|
- name: John Marty
|
|
link: https://www.linkedin.com/in/senatormarty
|
|
summary: null
|
|
location: St Paul, MN
|
|
articles: []
|
|
groups: []
|
|
last_updated: '2023-10-26T11:34:30Z'
|
|
next_page: null
|
|
description: List of students
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- School API
|
|
operationId: Student Listing Endpoint
|
|
summary: Student Listing Endpoint
|
|
/api/linkedin/profile/resolve/email:
|
|
get:
|
|
description: 'Cost: 3 credits / successful request.
|
|
|
|
Resolve social media profiles correlated from an email address.
|
|
|
|
This API endpoint works with both personal and work emails.'
|
|
parameters:
|
|
- in: query
|
|
name: email
|
|
required: false
|
|
description: 'Email address of the user you want to look up.
|
|
|
|
yes'
|
|
example: danial@nubela.co
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: lookup_depth
|
|
required: false
|
|
description:
|
|
"\n This parameter describes the depth options\
|
|
\ for our API lookup function. This endpoint can execute either a superficial\
|
|
\ or a deep lookup.\n\n A **superficial lookup** involves\
|
|
\ comparing the provided email with entries in our database. This approach\
|
|
\ tends to yield fewer results and is typically less effective for work-related\
|
|
\ email addresses. However, it does not consume any credits if no results\
|
|
\ are returned.\n\n On the other hand, a **deep lookup**\
|
|
\ extends beyond our database to utilize advanced heuristics and identify\
|
|
\ the individual associated with a given email. This method is particularly\
|
|
\ recommended for work emails.\n\n Please note the following\
|
|
\ valid values for the depth of the lookup:\n\n * `superficial`:\
|
|
\ No credits are consumed if no results are found.\n * `deep`\
|
|
\ (default): Credits are used regardless of whether any results are returned.\n\
|
|
\ \nyes"
|
|
example: deep
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: enrich_profile
|
|
required: false
|
|
description:
|
|
"\n Enrich the result with a cached LinkedIn profile\
|
|
\ of the LinkedIn Profile URL result (if any).\n\n Valid\
|
|
\ values are:\n\n * `skip` (default): do not enrich the results\
|
|
\ with cached profile data.\n * `enrich`: enriches the result\
|
|
\ with cached profile data. \n\n Calling this API endpoint\
|
|
\ with this parameter would add `1` additional credit.\n\n \
|
|
\ If you require [fresh profile data](https://nubela.co/blog/how-fresh-are-profiles-returned-by-proxycurl-api/),\
|
|
\ please chain this API call with the `linkedin_profile_url` result with\
|
|
\ the [Person Profile Endpoint](https://nubela.co/proxycurl/docs#people-api-person-profile-endpoint)\
|
|
\ with the `use_cache=if-recent` parameter.\n \nno"
|
|
example: enrich
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/ReverseEmailUrlEnrichResult'
|
|
example:
|
|
profile:
|
|
public_identifier: johnrmarty
|
|
profile_pic_url: https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647&v=beta&t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI
|
|
background_cover_image_url: https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647&v=beta&t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU
|
|
first_name: John
|
|
last_name: Marty
|
|
full_name: John Marty
|
|
follower_count: null
|
|
occupation: Co-Founder at Freedom Fund Real Estate
|
|
headline: Financial Freedom through Real Estate - LinkedIn Top Voice
|
|
summary:
|
|
"Most people go through life lost, disengaged, and unhappy\
|
|
\ at work and in their lives - I'm 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's\n\nQ: Can you speak at my Company, University, event or\
|
|
\ podcast?\nA: I'd love to! I've 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'm a #3 (The Achiever)\n\nLETS CONNECT:\n\
|
|
\u2611\uFE0F Email: JohnRmarty@gmail.com (don't forget that \"\
|
|
R\"....The other guy gets my emails all the time)"
|
|
country: US
|
|
country_full_name: United States of America
|
|
city: Seattle
|
|
state: Washington
|
|
experiences:
|
|
- starts_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2021
|
|
ends_at: null
|
|
company: Freedom Fund Real Estate
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/freedomfund
|
|
company_facebook_profile_url: null
|
|
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.
|
|
|
|
|
|
Website: https://www.freedomfundinvestments.com/home'
|
|
location: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647&v=beta&t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2021
|
|
ends_at: null
|
|
company: Mindset Reset Podcast
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/mindset-reset-podcast
|
|
company_facebook_profile_url: null
|
|
title: Founder
|
|
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"
|
|
location: Denver, Colorado, United States
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQF9QJVQm3SOvA/company-logo_100_100/0/1614527476576?e=2147483647&v=beta&t=m3tx83nMN-E3XQFoJG0Wmch8U4qKnJ9i--5NSAfffC0
|
|
education:
|
|
- 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/
|
|
school_facebook_profile_url: null
|
|
description: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQGVi9eAHgWxFw/company-logo_100_100/0/1673448029676?e=2147483647&v=beta&t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE
|
|
grade: null
|
|
activities_and_societies: null
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at:
|
|
day: 31
|
|
month: 12
|
|
year: 2015
|
|
field_of_study: School of Software Development
|
|
degree_name: null
|
|
school: Galvanize Inc
|
|
school_linkedin_profile_url: https://www.linkedin.com/school/galvanize-it/
|
|
school_facebook_profile_url: null
|
|
description:
|
|
rails, ruby, rspec, capybara, bootstrap, css, html,
|
|
api integration, Jquery, Javascript
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQFKNxOZ4X0g8Q/company-logo_100_100/0/1670610916338?e=2147483647&v=beta&t=t7ImfhmsuIJ7HJGHEbPJ2suxdslKhzp9v-5h9_G4sWE
|
|
grade: null
|
|
activities_and_societies: null
|
|
languages:
|
|
- English
|
|
- Spanish
|
|
accomplishment_organisations: []
|
|
accomplishment_publications: []
|
|
accomplishment_honors_awards: []
|
|
accomplishment_patents: []
|
|
accomplishment_courses: []
|
|
accomplishment_projects:
|
|
- starts_at:
|
|
day: 1
|
|
month: 3
|
|
year: 2015
|
|
ends_at: null
|
|
title: gMessenger
|
|
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's message content to the page in
|
|
real time, with no page refresh required. gMessenger also includes
|
|
custom authentication with three different permissions levels.
|
|
url: http://gmessenger.herokuapp.com/
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at: null
|
|
title: Taskly
|
|
description:
|
|
A task and project management responsive web app
|
|
utilizing Ruby on Rails - CSS and HTML
|
|
url: https://hidden-coast-7204.herokuapp.com/
|
|
accomplishment_test_scores: []
|
|
volunteer_work: []
|
|
certifications:
|
|
- starts_at: null
|
|
ends_at: null
|
|
name:
|
|
SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean
|
|
Practices in the SAFe Enterprise)
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scaled Agile, Inc.
|
|
url: null
|
|
- starts_at: null
|
|
ends_at: null
|
|
name: SCRUM Alliance Certified Product Owner
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scrum Alliance
|
|
url: null
|
|
connections: 500
|
|
people_also_viewed: []
|
|
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've 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!"
|
|
activities:
|
|
- 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
|
|
similarly_named_profiles:
|
|
- 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
|
|
- name: John Marty
|
|
link: https://www.linkedin.com/in/senatormarty
|
|
summary: null
|
|
location: St Paul, MN
|
|
articles: []
|
|
groups: []
|
|
last_updated: '2023-10-26T11:34:30Z'
|
|
description: Twitter, Facebook, and LinkedIn (Person) Profile URL
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Contact API
|
|
operationId: Reverse Email Lookup Endpoint
|
|
summary: Reverse Email Lookup Endpoint
|
|
/api/resolve/phone:
|
|
get:
|
|
description: 'Cost: 3 credits / successful request.
|
|
|
|
Find social media profiles from a contact phone number.'
|
|
parameters:
|
|
- in: query
|
|
name: phone_number
|
|
required: true
|
|
description:
|
|
'[E.164 formatted](https://www.twilio.com/docs/glossary/what-e164)
|
|
phone number of the person you want to identify social media profiles of.'
|
|
example: '+14155552671'
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/ReverseContactNumberResult'
|
|
example:
|
|
linkedin_profile_url: https://www.linkedin.com/in/senatormarty
|
|
twitter_profile_url: https://www.twitter.com/proxycurl
|
|
facebook_profile_url: https://www.facebook.com/zuck
|
|
description: Twitter, Facebook, and LinkedIn Profile URL
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Contact API
|
|
operationId: Reverse Contact Number Lookup Endpoint
|
|
summary: Reverse Contact Number Lookup Endpoint
|
|
/api/linkedin/profile/email:
|
|
get:
|
|
description: 'Cost: 3 credits / request.
|
|
|
|
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.'
|
|
parameters:
|
|
- in: query
|
|
name: linkedin_profile_url
|
|
required: true
|
|
description:
|
|
"\n Linkedin Profile URL of the person you want to\n extract\
|
|
\ work email address from.\n "
|
|
example: https://sg.linkedin.com/in/williamhgates
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: callback_url
|
|
required: false
|
|
description:
|
|
"\n Webhook to notify your application when\n the request\
|
|
\ has finished processing.\n "
|
|
example: https://webhook.site/29e12f17-d5a2-400a-9d08-42ee9d83600a
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/ExtractionEmailResult'
|
|
example:
|
|
email_queue_count: 0
|
|
description: Work Email Address
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Contact API
|
|
operationId: Work Email Lookup Endpoint
|
|
summary: Work Email Lookup Endpoint
|
|
/api/linkedin/job:
|
|
get:
|
|
description: 'Cost: 2 credits / successful request.
|
|
|
|
Get structured data of a LinkedIn Job Profile'
|
|
parameters:
|
|
- in: query
|
|
name: url
|
|
required: true
|
|
description:
|
|
"\n URL of the LinkedIn Job Profile to target.\n\n URL\
|
|
\ should be in the format of\n `https://www.linkedin.com/jobs/view/<job_id>`.\n\
|
|
\ [Jobs Listing Endpoint](#jobs-api-jobs-listing-endpoint)\n can be\
|
|
\ used to retrieve a job URL.\n "
|
|
example: https://www.linkedin.com/jobs/view/3667167926/
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/JobProfile'
|
|
example:
|
|
linkedin_internal_id: content-strategist-at-microsoft-3257696537
|
|
job_description:
|
|
"The Global Demand Center (GDC) within the Cloud\
|
|
\ Marketing group is leading the marketing transformation of Microsoft\u2019\
|
|
s 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\u2019\
|
|
re 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's 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's 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 & 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: 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&urlHash=I9BQ&trk=public_jobs_apply-link-offsite
|
|
title: Content Strategist
|
|
location:
|
|
country: United States
|
|
region: Hawaii
|
|
city: null
|
|
postal_code: null
|
|
latitude: null
|
|
longitude: null
|
|
street: null
|
|
company:
|
|
name: Microsoft
|
|
url: https://www.linkedin.com/company/microsoft
|
|
logo: https://media.licdn.com/dms/image/C560BAQE88xCsONDULQ/company-logo_100_100/0/1618231291419?e=2147483647&v=beta&t=rffql7GLHsSqWXKbdP2LJMMv7CMTqu7-Ms9d9tophKI
|
|
seniority_level: Mid-Senior level
|
|
industry:
|
|
- IT Services and IT Consulting, Computer Hardware Manufacturing,
|
|
and Software Development
|
|
employment_type: Full-time
|
|
job_functions:
|
|
- Marketing
|
|
total_applicants: 200
|
|
description: Detailed job data
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Jobs API
|
|
operationId: Job Profile Endpoint
|
|
summary: Job Profile Endpoint
|
|
/api/followers:
|
|
get:
|
|
description:
|
|
'Cost: 10 credits / result for users on an annual subscription
|
|
or Enterprise plan.
|
|
|
|
Get a list of individual followers of a company.'
|
|
parameters:
|
|
- in: query
|
|
name: linkedin_company_profile_url
|
|
required: false
|
|
description:
|
|
"\n The LinkedIn Profile URL of the company from\
|
|
\ which you want to get a list of followers of.\n\n URL should\
|
|
\ be in the format of `https://www.linkedin.com/company/<public-identifier>`\n\
|
|
\ \n\n Yes (Include only one of: `linkedin_company_profile_url`\
|
|
\ or `twitter_profile_url`)\n "
|
|
example: https://www.linkedin.com/company/henry-schein
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: twitter_profile_url
|
|
required: false
|
|
description:
|
|
"\n The Twitter/X Profile URL belonging to the\
|
|
\ company that you want to get a list of followers of.\n\n \
|
|
\ URL should be in the format of `https://x.com/<public-identifier>`\n\
|
|
\ \n\n Yes (Include only one of: `linkedin_company_profile_url`\
|
|
\ or `twitter_profile_url`)\n "
|
|
example: https://x.com/henryschein
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: page_size
|
|
required: false
|
|
description:
|
|
"\n Limit the maximum results of followers returned\
|
|
\ per API call.\n\n The default value of this parameter is\
|
|
\ 10.\n\n Accepted values for this parameter is an integer\
|
|
\ ranging from 0 to 1000.\n "
|
|
example: '10'
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/FollowerList'
|
|
example:
|
|
followers:
|
|
- linkedin_profile_url: https://www.linkedin.com/in/agiliosoftware
|
|
twitter_profile_url: https://www.x.com/agilio_software
|
|
email: null
|
|
- linkedin_profile_url: https://www.linkedin.com/in/air-techniques
|
|
twitter_profile_url: https://www.x.com/airtechniques
|
|
email: null
|
|
next_page: null
|
|
description: A list of individual followers of the company
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Customer API `EXPERIMENTAL`
|
|
operationId: Follower Listing Endpoint `EXPERIMENTAL`
|
|
summary: Follower Listing Endpoint `EXPERIMENTAL`
|
|
/api/followers/count:
|
|
get:
|
|
description:
|
|
'Cost: 1 credit / result for users on an annual subscription or
|
|
Enterprise plan.
|
|
|
|
Get the count of followers of a company.'
|
|
parameters:
|
|
- in: query
|
|
name: linkedin_company_profile_url
|
|
required: false
|
|
description:
|
|
"\n The LinkedIn Profile URL of the company from\
|
|
\ which you want to get a list of followers of.\n\n URL should\
|
|
\ be in the format of `https://www.linkedin.com/company/<public-identifier>`\n\
|
|
\ \n\n Yes (Include only one of: `linkedin_company_profile_url`\
|
|
\ or `twitter_profile_url`)\n "
|
|
example: https://www.linkedin.com/company/henry-schein
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: twitter_profile_url
|
|
required: false
|
|
description:
|
|
"\n The Twitter/X Profile URL belonging to the\
|
|
\ company that you want to get a list of followers of.\n\n \
|
|
\ URL should be in the format of `https://x.com/<public-identifier>`\n\
|
|
\ \n\n Yes (Include only one of: `linkedin_company_profile_url`\
|
|
\ or `twitter_profile_url`)\n "
|
|
example: https://x.com/henryschein
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/FollowerListCount'
|
|
example:
|
|
follower_count: 74
|
|
description: Count individuals of that company's followers
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Customer API `EXPERIMENTAL`
|
|
operationId: Follower Listing Count Endpoint `EXPERIMENTAL`
|
|
summary: Follower Listing Count Endpoint `EXPERIMENTAL`
|
|
/api/v2/search/company:
|
|
get:
|
|
description:
|
|
"Cost: 3 credits / result returned.\nSearch for companies that\
|
|
\ meet a set of criteria within\n our exhaustive dataset of company profiles.\n\
|
|
\n This API endpoint is powered by [LinkDB](https://nubela.co/proxycurl/linkdb),\
|
|
\ our exhaustive dataset of company profiles.\n\n This API endpoint can\
|
|
\ return at most of 10,000 results per search.\n\n Each search expression\
|
|
\ for a parameter is limited to a maximum of 255 characters."
|
|
parameters:
|
|
- in: query
|
|
name: country
|
|
required: false
|
|
description:
|
|
"\n Filter companies with an office based in this\
|
|
\ country.\n This parameter accepts a case-insensitive [Alpha-2\
|
|
\ ISO3166 country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).\n\
|
|
\ "
|
|
example: US
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: region
|
|
required: false
|
|
description:
|
|
"\n Filter companies with an office based in this\
|
|
\ country.\n This parameter accepts a case-insensitive [Alpha-2\
|
|
\ ISO3166 country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).\n\
|
|
\ "
|
|
example: United States
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: city
|
|
required: false
|
|
description:
|
|
"\n Filter companies based in cities matching\
|
|
\ the provided search expression.\n "
|
|
example: new AND york
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: type
|
|
required: false
|
|
description:
|
|
"\n Filter companies of the provided LinkedIn\
|
|
\ type.\n\n Possible values:\n\n * `EDUCATIONAL`:\
|
|
\ Educational Institution\n * `GOVERNMENT_AGENCY`: Government\
|
|
\ Agency\n * `NON_PROFIT` : Nonprofit\n *\
|
|
\ `PARTNERSHIP` : Partnership\n * `PRIVATELY_HELD` : Privately\
|
|
\ Held\n * `PUBLIC_COMPANY` : Public Company\n \
|
|
\ * `SELF_EMPLOYED` : Self-Employed\n * `SELF_OWNED`\
|
|
\ : Sole Proprietorship\n "
|
|
example: PRIVATELY_HELD
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: follower_count_min
|
|
required: false
|
|
description:
|
|
"\n Filter companies with a LinkedIn follower\
|
|
\ count **more than** this value.\n "
|
|
example: '1000'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: follower_count_max
|
|
required: false
|
|
description:
|
|
"\n Filter companies with a LinkedIn follower\
|
|
\ count **less than** this value.\n "
|
|
example: '1000'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: name
|
|
required: false
|
|
description:
|
|
"\n Filter companies with a name matching the\
|
|
\ provided search expression.\n "
|
|
example: google OR apple
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: industry
|
|
required: false
|
|
description:
|
|
"\n Filter companies belonging to an `industry`\
|
|
\ that matches the provided search expression. 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](https://drive.google.com/file/d/12yvYLuru7CRv3wKOIkHs5Ldocz31gJSS/view?usp=share_link).\n\
|
|
\ "
|
|
example: technology
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: employee_count_max
|
|
required: false
|
|
description:
|
|
"\n Filter companies with **at most** this many\
|
|
\ employees.\n "
|
|
example: '1000'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: employee_count_min
|
|
required: false
|
|
description:
|
|
"\n Filter companies with **at least** this many\
|
|
\ employees.\n "
|
|
example: '1000'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: description
|
|
required: false
|
|
description:
|
|
"\n Filter companies with a description matching\
|
|
\ the provided search expression.\n "
|
|
example: medical device
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: founded_after_year
|
|
required: false
|
|
description:
|
|
"\n Filter companies founded **after** this year.\n\
|
|
\ "
|
|
example: '1999'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: founded_before_year
|
|
required: false
|
|
description:
|
|
"\n Filter companies founded **before** this year.\n\
|
|
\ "
|
|
example: '1999'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: funding_amount_max
|
|
required: false
|
|
description:
|
|
"\n Filter companies that have raised **at most**\
|
|
\ this much (USD) funding amount.\n "
|
|
example: '1000000'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: funding_amount_min
|
|
required: false
|
|
description:
|
|
"\n Filter companies that have raised **at least**\
|
|
\ this much (USD) funding amount.\n "
|
|
example: '1000000'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: funding_raised_after
|
|
required: false
|
|
description:
|
|
"\n Filter companies that have raised funding\
|
|
\ **after** this date.\n "
|
|
example: '2019-12-30'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: funding_raised_before
|
|
required: false
|
|
description:
|
|
"\n Filter companies that have raised funding\
|
|
\ **before** this date.\n "
|
|
example: '2019-12-30'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: public_identifier_in_list
|
|
required: false
|
|
description:
|
|
"\n A list of public identifiers (the identifying\
|
|
\ portion of the company\u2019s profile URL).\n The target\
|
|
\ company\u2019s identifier must be a member of this list.\n \
|
|
\ "
|
|
example: stripe,amazon
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: public_identifier_not_in_list
|
|
required: false
|
|
description:
|
|
"\n A list of public identifiers (the identifying\
|
|
\ portion of the company\u2019s profile URL).\n The target\
|
|
\ company\u2019s identifier must **not** be a member of this list.\n \
|
|
\ "
|
|
example: stripe,amazon
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: page_size
|
|
required: false
|
|
description:
|
|
"\n Tune the maximum results returned per API\
|
|
\ call.\n\n The default value of this parameter is 100.\n\
|
|
\n Accepted values for this parameter is an integer ranging\
|
|
\ from 1 to 100.\n\n When `enrich_profiles=enrich`, this\
|
|
\ parameter accepts value ranging from `1` to `10`.\n "
|
|
example: '10'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: enrich_profiles
|
|
required: false
|
|
description:
|
|
"\n Get the company's complete profile data rather\
|
|
\ than just the URLs to their LinkedIn profiles.\n\n Each\
|
|
\ request respond with a streaming response of profiles.\n\n \
|
|
\ The valid values are:\n\n - skip (default): lists company's\
|
|
\ profile url\n - enrich: include company's profile data\
|
|
\ in the list\n\n Calling this API endpoint with this parameter\
|
|
\ would add 1 credit per result returned.\n "
|
|
example: enrich
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/CompanySearchResult'
|
|
example:
|
|
results:
|
|
- linkedin_profile_url: https://www.linkedin.com/company/apple/
|
|
profile:
|
|
linkedin_internal_id: '1441'
|
|
description:
|
|
"A problem isn't truly solved until it's 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.
|
|
|
|
|
|
Check out our career opportunities at careers.google.com."
|
|
website: https://goo.gle/3m1IN7m
|
|
industry: Software Development
|
|
company_size:
|
|
- 10001
|
|
- null
|
|
company_size_on_linkedin: 319856
|
|
hq:
|
|
country: US
|
|
city: Mountain View
|
|
postal_code: '94043'
|
|
line_1: 1600 Amphitheatre Parkway
|
|
is_hq: true
|
|
state: CA
|
|
company_type: PUBLIC_COMPANY
|
|
founded_year: null
|
|
specialities:
|
|
- search
|
|
- ads
|
|
locations:
|
|
- country: US
|
|
city: Mountain View
|
|
postal_code: '94043'
|
|
line_1: 1600 Amphitheatre Parkway
|
|
is_hq: true
|
|
state: CA
|
|
- country: US
|
|
city: New York
|
|
postal_code: '10011'
|
|
line_1: 111 8th Ave
|
|
is_hq: false
|
|
state: NY
|
|
name: Google
|
|
tagline: null
|
|
universal_name_id: google
|
|
profile_pic_url: https://s3.us-west-000.backblazeb2.com/proxycurl/company/google/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20230119T060024Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=0d3500b39da8db1d2d8f5727a9ac39a7c4a88b4632ed68209dee12f06bc79aca
|
|
background_cover_image_url: https://s3.us-west-000.backblazeb2.com/proxycurl/company/google/cover?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20230119T060024Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=abb7a4b87583cffda8db24d58d906c644998fae8cbb99e98c69a35720fcd0050
|
|
search_id: '1441'
|
|
similar_companies:
|
|
- name: Amazon
|
|
link: https://www.linkedin.com/company/amazon
|
|
industry: Software Development
|
|
location: Seattle, WA
|
|
- name: Microsoft
|
|
link: https://www.linkedin.com/company/microsoft
|
|
industry: Software Development
|
|
location: Redmond, Washington
|
|
affiliated_companies:
|
|
- name: YouTube
|
|
link: https://www.linkedin.com/company/youtube
|
|
industry: Software Development
|
|
location: San Bruno, CA
|
|
- name: Google Cloud
|
|
link: https://www.linkedin.com/showcase/google-cloud
|
|
industry: Software Development
|
|
location: Mountain View, California
|
|
updates:
|
|
- article_link: null
|
|
image: https://media.licdn.com/dms/image/C5605AQFthnjiTD6Mvg/videocover-high/0/1660754102856?e=2147483647&v=beta&t=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&v=beta&t=whRRx9ULPEuyw_FgUg4Z3N3O9iksyJW7ewCGZA6ujdg
|
|
posted_on: null
|
|
text:
|
|
"Ariana, welcome to Google. Here\u2019s to a year full\
|
|
\ of growth, learning, and experiences at #LifeAtGoogle! \U0001F389"
|
|
total_likes: 397
|
|
follower_count: 27472792
|
|
last_updated: '2023-10-26T11:34:30Z'
|
|
next_page: null
|
|
total_result_count: 1
|
|
description: List of companies
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Search API
|
|
operationId: Company Search Endpoint
|
|
summary: Company Search Endpoint
|
|
/api/v2/search/person/:
|
|
get:
|
|
description: 'Cost: 3 credits / result returned.
|
|
|
|
Search for people who meet a set of criteria within our exhaustive dataset
|
|
of people profiles.
|
|
|
|
|
|
This API endpoint is powered by [LinkDB](https://nubela.co/proxycurl/linkdb),
|
|
our exhaustive dataset of people and company profiles.
|
|
|
|
|
|
This API endpoint can return at most 10,000 results per search.
|
|
|
|
|
|
Each search expression for a parameter is limited to a maximum of 255 characters.'
|
|
parameters:
|
|
- in: query
|
|
name: country
|
|
required: true
|
|
description:
|
|
"\n Filter people located in this country.\n \
|
|
\ This parameter accepts a case-insensitive [Alpha-2 ISO3166\
|
|
\ country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).\n \
|
|
\ "
|
|
example: US
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: first_name
|
|
required: false
|
|
description:
|
|
"\n Filter people whose first names match the\
|
|
\ provided search expression.\n "
|
|
example: Sarah
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: last_name
|
|
required: false
|
|
description:
|
|
"\n Filter people whose last names match the provided\
|
|
\ search expression.\n "
|
|
example: Jackson OR Johnson
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: education_field_of_study
|
|
required: false
|
|
description:
|
|
"\n Filter people with a field of study matching\
|
|
\ the provided search expression, based on education history.\n \
|
|
\ "
|
|
example: computer science
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: education_degree_name
|
|
required: false
|
|
description:
|
|
"\n Filter people who earned a degree matching\
|
|
\ the provided search expression, based on education history.\n \
|
|
\ "
|
|
example: MBA
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: education_school_name
|
|
required: false
|
|
description:
|
|
"\n Filter people who have attended a school whose\
|
|
\ name matches the provided search expression, based on education history.\n\
|
|
\ "
|
|
example: Caltech OR Massachusetts Institute of Technology
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: education_school_linkedin_profile_url
|
|
required: false
|
|
description:
|
|
"\n Filter people who have attended a school with\
|
|
\ a specific LinkedIn profile URL, based on education history.\n \
|
|
\ "
|
|
example: https://www.linkedin.com/school/national-university-of-singapore/
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_role_title
|
|
required: false
|
|
description:
|
|
"\n Filter people who are **currently** working\
|
|
\ as a role whose title matches the provided search expression. You'll be\
|
|
\ looking for profiles on [LinkDB](https://nubela.co/proxycurl/linkdb) that\
|
|
\ show a person's current job. However, keep in mind that some of these\
|
|
\ profiles may not be up-to-date, which means you might sometimes see a\
|
|
\ person's old job instead of their current job on LinkedIn.\n \
|
|
\ "
|
|
example: founder
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: past_role_title
|
|
required: false
|
|
description:
|
|
"\n Filter people who have **in the past** worked\
|
|
\ as a role whose title matches the provided search expression.\n \
|
|
\ "
|
|
example: founder
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_role_before
|
|
required: false
|
|
description:
|
|
"\n Filter people who started their current role\
|
|
\ **before** this date. You'll be looking for profiles on [LinkDB](https://nubela.co/proxycurl/linkdb)\
|
|
\ that show a person's current job. However, keep in mind that some of these\
|
|
\ profiles may not be up-to-date, which means you might sometimes see a\
|
|
\ person's old job instead of their current job on LinkedIn.\n\n \
|
|
\ This parameter takes a ISO8601 date. Default value of this parameter\
|
|
\ is `null`.\n "
|
|
example: '2019-12-30'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_role_after
|
|
required: false
|
|
description:
|
|
"\n Filter people who started their current role\
|
|
\ **after** this date. You'll be looking for profiles on [LinkDB](https://nubela.co/proxycurl/linkdb)\
|
|
\ that show a person's current job. However, keep in mind that some of these\
|
|
\ profiles may not be up-to-date, which means you might sometimes see a\
|
|
\ person's old job instead of their current job on LinkedIn.\n\n \
|
|
\ This parameter takes a ISO8601 date. Default value of this parameter\
|
|
\ is `null`.\n "
|
|
example: '2019-12-30'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_company_linkedin_profile_url
|
|
required: false
|
|
description:
|
|
"\n Filter people who are **currently** working\
|
|
\ at a company represented by this LinkedIn Company Profile URL.\n\n \
|
|
\ Default value of this parameter is `null`.\n \
|
|
\ "
|
|
example: https://www.linkedin.com/company/apple
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: past_company_linkedin_profile_url
|
|
required: false
|
|
description:
|
|
"\n Filter people who have **in the past** worked\
|
|
\ at the company represented by this LinkedIn Company Profile URL.\n\n \
|
|
\ This parameter takes a LinkedIn Company Profile URL. Default\
|
|
\ value of this parameter is `null`.\n "
|
|
example: https://www.linkedin.com/company/apple
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_job_description
|
|
required: false
|
|
description:
|
|
"\n Filter people with **current** job descriptions\
|
|
\ matching the provided search expression.\n "
|
|
example: education
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: past_job_description
|
|
required: false
|
|
description:
|
|
"\n Filter people with **past** job descriptions\
|
|
\ matching the provided search expression.\n "
|
|
example: education
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_company_name
|
|
required: false
|
|
description:
|
|
"\n Filter people who are **currently** working\
|
|
\ at a company whose name matches the provided search expression.\n \
|
|
\ "
|
|
example: Stripe OR Apple
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: past_company_name
|
|
required: false
|
|
description:
|
|
"\n Filter people who **have previously** worked\
|
|
\ at a company whose name matches the provided search expression.\n \
|
|
\ "
|
|
example: Stripe OR Apple
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: linkedin_groups
|
|
required: false
|
|
description:
|
|
"\n Filter people who are members of LinkedIn\
|
|
\ groups whose names match the provided search expression.\n \
|
|
\ "
|
|
example: haskell
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: languages
|
|
required: false
|
|
description:
|
|
"\n Filter people who list a language matching\
|
|
\ the provided search expression.\n "
|
|
example: Mandarin OR Chinese
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: region
|
|
required: false
|
|
description:
|
|
"\n Filter people located in a region matching\
|
|
\ the provided search expression.\n A \u201Cregion\u201D\
|
|
\ in this context means \u201Cstate,\u201D \u201Cprovince,\u201D or similar\
|
|
\ political division, depending on what country you\u2019re querying.\n\
|
|
\ "
|
|
example: California
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: city
|
|
required: false
|
|
description:
|
|
"\n Filter people located in a city matching the\
|
|
\ provided search expression.\n "
|
|
example: Seattle OR Los Angeles
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: headline
|
|
required: false
|
|
description:
|
|
"\n Filter people whose LinkedIn headline fields\
|
|
\ match the provided search expression.\n "
|
|
example: founder
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: summary
|
|
required: false
|
|
description:
|
|
"\n Filter people whose LinkedIn summary fields\
|
|
\ match the provided search expression.\n "
|
|
example: founder
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: industries
|
|
required: false
|
|
description:
|
|
"\n Person's inferred industry. May sometimes\
|
|
\ exist when `current_company_industry` does not, but `current_company_industry`\
|
|
\ should be preferred when it exists.\n "
|
|
example: automotive
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: interests
|
|
required: false
|
|
description:
|
|
"\n Filter people whose Linkedin interest fields\
|
|
\ match the provided search expression.\n "
|
|
example: technology
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: skills
|
|
required: false
|
|
description:
|
|
"\n Filter people whose Linkedin skill fields\
|
|
\ match the provided search expression.\n "
|
|
example: accounting
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_company_country
|
|
required: false
|
|
description:
|
|
"\n Filter people who are currently working at\
|
|
\ a company with an office based in this country.\n\n This\
|
|
\ parameter accepts a case-insensitive [Alpha-2 ISO3166 country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).\n\
|
|
\ "
|
|
example: us
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_company_region
|
|
required: false
|
|
description:
|
|
"\n Filter people who are currently working at\
|
|
\ a company based in a region matching the provided search expression.\n\
|
|
\ "
|
|
example: United States
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_company_city
|
|
required: false
|
|
description:
|
|
"\n Filter people who are currently working at\
|
|
\ a company based in a city matching the provided search expression.\n \
|
|
\ "
|
|
example: Seattle OR Los Angeles
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_company_type
|
|
required: false
|
|
description:
|
|
"\n Filter people who are currently working at\
|
|
\ a company of the provided LinkedIn type.\n\n Possible values:\n\
|
|
\n * `EDUCATIONAL`: Educational Institution\n \
|
|
\ * `GOVERNMENT_AGENCY`: Government Agency\n * `NON_PROFIT`\
|
|
\ : Nonprofit\n * `PARTNERSHIP` : Partnership\n \
|
|
\ * `PRIVATELY_HELD` : Privately Held\n * `PUBLIC_COMPANY`\
|
|
\ : Public Company\n * `SELF_EMPLOYED` : Self-Employed\n\
|
|
\ * `SELF_OWNED` : Sole Proprietorship\n "
|
|
example: NON_PROFIT
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_company_follower_count_min
|
|
required: false
|
|
description:
|
|
"\n Filter people who are currently working at\
|
|
\ a company with a LinkedIn follower count **more than** this value.\n \
|
|
\ "
|
|
example: '1000'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_company_follower_count_max
|
|
required: false
|
|
description:
|
|
"\n Filter people who are currently working at\
|
|
\ a company with a LinkedIn follower count **less than** this value.\n \
|
|
\ "
|
|
example: '1000'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_company_industry
|
|
required: false
|
|
description:
|
|
"\n Filter people who are currently working at\
|
|
\ a company belonging to an `industry` that matches the provided search\
|
|
\ expression. 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](https://drive.google.com/file/d/12yvYLuru7CRv3wKOIkHs5Ldocz31gJSS/view?usp=share_link).\n\
|
|
\ "
|
|
example: higher AND education
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_company_employee_count_min
|
|
required: false
|
|
description:
|
|
"\n Filter people who are currently working at\
|
|
\ a company with **at least** this many employees.\n "
|
|
example: '1000'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_company_employee_count_max
|
|
required: false
|
|
description:
|
|
"\n Filter people who are currently working at\
|
|
\ a company with **at most** this many employees.\n "
|
|
example: '1000'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_company_description
|
|
required: false
|
|
description:
|
|
"\n Filter people who are currently working at\
|
|
\ a company with a description matching the provided search expression.\n\
|
|
\ "
|
|
example: medical device
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_company_founded_after_year
|
|
required: false
|
|
description:
|
|
"\n Filter people who are currently working at\
|
|
\ a company that was founded **after** this year.\n "
|
|
example: '1999'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_company_founded_before_year
|
|
required: false
|
|
description:
|
|
"\n Filter people who are currently working at\
|
|
\ a company that was founded **before** this year.\n "
|
|
example: '1999'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_company_funding_amount_min
|
|
required: false
|
|
description:
|
|
"\n Filter people who are currently working at\
|
|
\ a company that has raised **at least** this much (USD) funding amount.\n\
|
|
\ "
|
|
example: '1000000'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_company_funding_amount_max
|
|
required: false
|
|
description:
|
|
"\n Filter people who are currently working at\
|
|
\ a company that has raised **at most** this much (USD) funding amount.\n\
|
|
\ "
|
|
example: '1000000'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_company_funding_raised_after
|
|
required: false
|
|
description:
|
|
"\n Filter people who are currently working at\
|
|
\ a company that has raised funding **after** this date.\n \
|
|
\ "
|
|
example: '2019-12-30'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: current_company_funding_raised_before
|
|
required: false
|
|
description:
|
|
"\n Filter people who are currently working at\
|
|
\ a company that has raised funding **before** this date.\n \
|
|
\ "
|
|
example: '2019-12-30'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: public_identifier_in_list
|
|
required: false
|
|
description:
|
|
"\n A list of public identifiers (the identifying\
|
|
\ portion of the person\u2019s profile URL).\n The target\
|
|
\ person\u2019s identifier must be a member of this list.\n \
|
|
\ "
|
|
example: williamhgates,johnrmarty
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: public_identifier_not_in_list
|
|
required: false
|
|
description:
|
|
"\n A list of public identifiers (the identifying\
|
|
\ portion of the person\u2019s profile URL).\n The target\
|
|
\ person\u2019s identifier must **not** be a member of this list.\n \
|
|
\ "
|
|
example: williamhgates,johnrmarty
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: page_size
|
|
required: false
|
|
description:
|
|
"\n Tune the maximum results returned per API\
|
|
\ call.\n\n The default value of this parameter is `100`.\n\
|
|
\n Accepted values for this parameter is an integer ranging\
|
|
\ from `1` to `100`.\n\n When `enrich_profiles=enrich`, this\
|
|
\ parameter accepts value ranging from `1` to `10`.\n "
|
|
example: '10'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: enrich_profiles
|
|
required: false
|
|
description:
|
|
"\n Get the person's complete profile data rather\
|
|
\ than just the URLs to their LinkedIn profiles.\n\n Each\
|
|
\ request respond with a streaming response of profiles.\n\n \
|
|
\ The valid values are:\n\n * `skip` (default): lists\
|
|
\ person's profile url only\n * `enrich`: include person's\
|
|
\ profile data in the list\n\n Calling this API endpoint\
|
|
\ with this parameter would add `1` credit per result returned.\n \
|
|
\ "
|
|
example: enrich
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/PersonSearchResult'
|
|
example:
|
|
results:
|
|
- linkedin_profile_url: https://www.linkedin.com/in/johnrmarty
|
|
profile:
|
|
public_identifier: johnrmarty
|
|
profile_pic_url: https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647&v=beta&t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI
|
|
background_cover_image_url: https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647&v=beta&t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU
|
|
first_name: John
|
|
last_name: Marty
|
|
full_name: John Marty
|
|
follower_count: null
|
|
occupation: Co-Founder at Freedom Fund Real Estate
|
|
headline:
|
|
Financial Freedom through Real Estate - LinkedIn Top
|
|
Voice
|
|
summary:
|
|
"Most people go through life lost, disengaged, and unhappy\
|
|
\ at work and in their lives - I'm 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\n\
|
|
FAQ's\n\nQ: Can you speak at my Company, University, event or\
|
|
\ podcast?\nA: I'd love to! I've 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'm a #3 (The Achiever)\n\nLETS\
|
|
\ CONNECT:\n\u2611\uFE0F Email: JohnRmarty@gmail.com (don't\
|
|
\ forget that \"R\"....The other guy gets my emails all the\
|
|
\ time)"
|
|
country: US
|
|
country_full_name: United States of America
|
|
city: Seattle
|
|
state: Washington
|
|
experiences:
|
|
- starts_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2021
|
|
ends_at: null
|
|
company: Freedom Fund Real Estate
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/freedomfund
|
|
company_facebook_profile_url: null
|
|
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.
|
|
|
|
|
|
Website: https://www.freedomfundinvestments.com/home'
|
|
location: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647&v=beta&t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2021
|
|
ends_at: null
|
|
company: Mindset Reset Podcast
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/mindset-reset-podcast
|
|
company_facebook_profile_url: null
|
|
title: Founder
|
|
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"
|
|
location: Denver, Colorado, United States
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQF9QJVQm3SOvA/company-logo_100_100/0/1614527476576?e=2147483647&v=beta&t=m3tx83nMN-E3XQFoJG0Wmch8U4qKnJ9i--5NSAfffC0
|
|
education:
|
|
- 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/
|
|
school_facebook_profile_url: null
|
|
description: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQGVi9eAHgWxFw/company-logo_100_100/0/1673448029676?e=2147483647&v=beta&t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE
|
|
grade: null
|
|
activities_and_societies: null
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at:
|
|
day: 31
|
|
month: 12
|
|
year: 2015
|
|
field_of_study: School of Software Development
|
|
degree_name: null
|
|
school: Galvanize Inc
|
|
school_linkedin_profile_url: https://www.linkedin.com/school/galvanize-it/
|
|
school_facebook_profile_url: null
|
|
description:
|
|
rails, ruby, rspec, capybara, bootstrap, css, html,
|
|
api integration, Jquery, Javascript
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQFKNxOZ4X0g8Q/company-logo_100_100/0/1670610916338?e=2147483647&v=beta&t=t7ImfhmsuIJ7HJGHEbPJ2suxdslKhzp9v-5h9_G4sWE
|
|
grade: null
|
|
activities_and_societies: null
|
|
languages:
|
|
- English
|
|
- Spanish
|
|
accomplishment_organisations: []
|
|
accomplishment_publications: []
|
|
accomplishment_honors_awards: []
|
|
accomplishment_patents: []
|
|
accomplishment_courses: []
|
|
accomplishment_projects:
|
|
- starts_at:
|
|
day: 1
|
|
month: 3
|
|
year: 2015
|
|
ends_at: null
|
|
title: gMessenger
|
|
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's message content to the page in
|
|
real time, with no page refresh required. gMessenger also
|
|
includes custom authentication with three different permissions
|
|
levels.
|
|
url: http://gmessenger.herokuapp.com/
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at: null
|
|
title: Taskly
|
|
description:
|
|
A task and project management responsive web app
|
|
utilizing Ruby on Rails - CSS and HTML
|
|
url: https://hidden-coast-7204.herokuapp.com/
|
|
accomplishment_test_scores: []
|
|
volunteer_work: []
|
|
certifications:
|
|
- starts_at: null
|
|
ends_at: null
|
|
name:
|
|
SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean
|
|
Practices in the SAFe Enterprise)
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scaled Agile, Inc.
|
|
url: null
|
|
- starts_at: null
|
|
ends_at: null
|
|
name: SCRUM Alliance Certified Product Owner
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scrum Alliance
|
|
url: null
|
|
connections: 500
|
|
people_also_viewed: []
|
|
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've 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!"
|
|
activities:
|
|
- 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
|
|
similarly_named_profiles:
|
|
- 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
|
|
- name: John Marty
|
|
link: https://www.linkedin.com/in/senatormarty
|
|
summary: null
|
|
location: St Paul, MN
|
|
articles: []
|
|
groups: []
|
|
last_updated: '2023-10-26T11:34:30Z'
|
|
next_page: null
|
|
total_result_count: 1
|
|
description: LinkedIn (Person) Profile URL
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Search API
|
|
operationId: Person Search Endpoint
|
|
summary: Person Search Endpoint
|
|
/api/credit-balance:
|
|
get:
|
|
description: 'Cost: 0 credit / successful request.
|
|
|
|
Get your current credit(s) balance'
|
|
parameters: []
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/CreditBalance'
|
|
example:
|
|
credit_balance: 100000
|
|
description: Balance of credits
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Meta API
|
|
operationId: View Credit Balance Endpoint
|
|
summary: View Credit Balance Endpoint
|
|
/api/disposable-email:
|
|
get:
|
|
description: 'Cost: 0 credit / successful request.
|
|
|
|
Given an email address, checks if the email address belongs to a disposable
|
|
email service.'
|
|
parameters:
|
|
- in: query
|
|
name: email
|
|
required: true
|
|
description: Email address to check
|
|
example: steven@nubela.co
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/DisposableEmail'
|
|
example:
|
|
is_disposable_email: false
|
|
is_free_email: false
|
|
description: Disposable Email Check
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Contact API
|
|
operationId: Disposable Email Address Check Endpoint
|
|
summary: Disposable Email Address Check Endpoint
|
|
/api/contact-api/personal-contact:
|
|
get:
|
|
description: 'Cost: 1 credit / contact number returned.
|
|
|
|
Find personal phone numbers associated with a given social media profile.'
|
|
parameters:
|
|
- in: query
|
|
name: page_size
|
|
required: false
|
|
description:
|
|
"\n This controls the maximum number of numbers returned per\
|
|
\ API call.\n It's useful for limiting credit consumption as the number\
|
|
\ of numbers\n per identity can vary. The default value is 0, meaning\
|
|
\ there's no limit\n to the number of returned results.\n "
|
|
example: '0'
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: twitter_profile_url
|
|
required: false
|
|
description:
|
|
"\n The Twitter/X Profile URL from which you wish to extract\
|
|
\ personal\n contact numbers\n \n\n Yes (Include only one of: `linkedin_profile_url`,\n\
|
|
\ `twitter_profile_url`, or `facebook_profile_url`)\n "
|
|
example: https://x.com/proxycurl
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: facebook_profile_url
|
|
required: false
|
|
description:
|
|
"\n The Facebook Profile URL from which you wish to extract\
|
|
\ personal\n contact numbers\n \n\n Yes (Include only one of: `linkedin_profile_url`,\n\
|
|
\ `twitter_profile_url`, or `facebook_profile_url`)\n "
|
|
example: https://www.facebook.com/zuck
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: linkedin_profile_url
|
|
required: false
|
|
description:
|
|
"\n The LinkedIn Profile URL from which you wish to extract\
|
|
\ personal\n contact numbers\n \n\n Yes (Include only one of: `linkedin_profile_url`,\n\
|
|
\ `twitter_profile_url`, or `facebook_profile_url`)\n "
|
|
example: https://linkedin.com/in/steven-goh-6738131b
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/PersonalContactNumbers'
|
|
example:
|
|
numbers:
|
|
- '+1123123123'
|
|
description: List of Personal Contact Numbers
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Contact API
|
|
operationId: Personal Contact Number Lookup Endpoint
|
|
summary: Personal Contact Number Lookup Endpoint
|
|
/api/contact-api/personal-email:
|
|
get:
|
|
description: 'Cost: 1 credit / email returned.
|
|
|
|
Find personal email addresses associated with a given social media profile.'
|
|
parameters:
|
|
- in: query
|
|
name: email_validation
|
|
required: false
|
|
description:
|
|
"\n How to validate each email.\n \n Takes the following\
|
|
\ values:\n * `none` (default) - Do not perform email validation.\n\
|
|
\ * `fast` - Perform fast email validation (does not cost extra credit).\n\
|
|
\ * `precise` - Perform deliverability validation (costs 1 extra credit\
|
|
\ per email found).\n\n For backward-compatibility these are also accepted:\n\
|
|
\ * `include` - Equivalent to `precise`\n * `exclude` - Equivalent\
|
|
\ to `none`\n "
|
|
example: include
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: page_size
|
|
required: false
|
|
description:
|
|
This controls the maximum number of emails returned per API call.
|
|
It's useful for limiting credit consumption as the number of emails per
|
|
identity can vary. The default value is `0`, meaning there's no limit to
|
|
the number of returned results.
|
|
example: 0
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: twitter_profile_url
|
|
required: false
|
|
description:
|
|
'The Twitter/X Profile URL from which you wish to extract personal
|
|
email addresses.
|
|
|
|
yes (Include only one of: `linkedin_profile_url`, `twitter_profile_url`,
|
|
or `facebook_profile_url`)'
|
|
example: https://x.com/proxycurl
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: facebook_profile_url
|
|
required: false
|
|
description:
|
|
'The Facebook Profile URL from which you wish to extract personal
|
|
email addresses.
|
|
|
|
yes (Include only one of: `linkedin_profile_url`, `twitter_profile_url`,
|
|
or `facebook_profile_url`)'
|
|
example: https://www.facebook.com/zuck
|
|
schema:
|
|
type: string
|
|
- in: query
|
|
name: linkedin_profile_url
|
|
required: false
|
|
description:
|
|
'The LinkedIn Profile URL from which you wish to extract personal
|
|
email addresses.
|
|
|
|
yes (Include only one of: `linkedin_profile_url`, `twitter_profile_url`,
|
|
or `facebook_profile_url`)'
|
|
example: https://linkedin.com/in/steven-goh-6738131b
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/PDLEmailResult'
|
|
example:
|
|
emails:
|
|
- random@gmail.com
|
|
- random2@yahoo.com
|
|
invalid_emails:
|
|
- random3@gmail.com
|
|
description: List of Personal Emails
|
|
'400':
|
|
description:
|
|
Invalid parameters provided. Refer to the documentation and
|
|
message body for more info
|
|
'401':
|
|
description: Invalid API key
|
|
'403':
|
|
description: You have run out of credits
|
|
'404':
|
|
description:
|
|
'The requested resource (e.g: user profile, company) could
|
|
not be found'
|
|
'429':
|
|
description: Rate limited. Please retry
|
|
'500':
|
|
description: Internal Server Error
|
|
'503':
|
|
description: Enrichment failed, please retry.
|
|
tags:
|
|
- Contact API
|
|
operationId: Personal Email Lookup Endpoint
|
|
summary: Personal Email Lookup Endpoint
|
|
info:
|
|
title: Proxycurl API
|
|
version: 1.0.0
|
|
openapi: 3.0.0
|
|
components:
|
|
schemas:
|
|
CompanyLocation:
|
|
type: object
|
|
properties:
|
|
country:
|
|
type: string
|
|
nullable: true
|
|
city:
|
|
type: string
|
|
nullable: true
|
|
postal_code:
|
|
type: string
|
|
nullable: true
|
|
line_1:
|
|
type: string
|
|
nullable: true
|
|
is_hq:
|
|
type: boolean
|
|
state:
|
|
type: string
|
|
nullable: true
|
|
example: &id002
|
|
country: SG
|
|
city: Singapore
|
|
postal_code: '119077'
|
|
line_1: 21 Lower Kent Ridge Road, Singapore
|
|
is_hq: true
|
|
state: null
|
|
CompanyType:
|
|
type: string
|
|
enum:
|
|
- EDUCATIONAL
|
|
- GOVERNMENT_AGENCY
|
|
- NON_PROFIT
|
|
- PARTNERSHIP
|
|
- PRIVATELY_HELD
|
|
- PUBLIC_COMPANY
|
|
- SELF_EMPLOYED
|
|
- SELF_OWNED
|
|
SimilarCompany:
|
|
type: object
|
|
properties:
|
|
name:
|
|
type: string
|
|
nullable: true
|
|
link:
|
|
type: string
|
|
nullable: true
|
|
industry:
|
|
type: string
|
|
nullable: true
|
|
location:
|
|
type: string
|
|
nullable: true
|
|
example: &id003
|
|
name: NUS Business School
|
|
link: https://www.linkedin.com/school/nus-business-school/
|
|
industry: Higher Education
|
|
location: null
|
|
AffiliatedCompany:
|
|
type: object
|
|
properties:
|
|
name:
|
|
type: string
|
|
nullable: true
|
|
link:
|
|
type: string
|
|
nullable: true
|
|
industry:
|
|
type: string
|
|
nullable: true
|
|
location:
|
|
type: string
|
|
nullable: true
|
|
example: &id004
|
|
name: LinkedIn
|
|
link: https://www.linkedin.com/company/linkedin
|
|
industry: Internet
|
|
location: Sunnyvale, California
|
|
Date:
|
|
type: object
|
|
properties:
|
|
day:
|
|
type: integer
|
|
nullable: true
|
|
month:
|
|
type: integer
|
|
nullable: true
|
|
year:
|
|
type: integer
|
|
example: &id001
|
|
day: 30
|
|
month: 9
|
|
year: 2021
|
|
CompanyUpdate:
|
|
type: object
|
|
properties:
|
|
article_link:
|
|
type: string
|
|
nullable: true
|
|
description: The URL for which the post links out to
|
|
image:
|
|
type: string
|
|
nullable: true
|
|
description: The URL to the image to the post (if it exists)
|
|
posted_on:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
text:
|
|
type: string
|
|
nullable: true
|
|
description: The body of the update
|
|
total_likes:
|
|
type: integer
|
|
nullable: true
|
|
description: The total likes a post has received
|
|
example: &id005
|
|
article_link: https://lnkd.in/gr7cb5by
|
|
image: https://media-exp1.licdn.com/dms/image/C5622AQEGh8idEAm14Q/feedshare-shrink_800/0/1633089889886?e=1637798400&v=beta&t=LtGtAUSJNrPYdHpVhTBLhGTWYqrHtFJ86PKSmTpou7c
|
|
posted_on: *id001
|
|
text: Introducing Personal Email Lookup API https://lnkd.in/gr7cb5by
|
|
total_likes: 3
|
|
LinkedinSchool:
|
|
type: object
|
|
properties:
|
|
linkedin_internal_id:
|
|
type: string
|
|
description:
|
|
"\n LinkedIn's Internal and immutable ID of this Company\
|
|
\ profile.\n "
|
|
description:
|
|
type: string
|
|
nullable: true
|
|
description: A textual description of the company.
|
|
website:
|
|
type: string
|
|
nullable: true
|
|
description: The URL of the company's website.
|
|
industry:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
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] (https://drive.google.com/file/d/12yvYLuru7CRv3wKOIkHs5Ldocz31gJSS/view?usp=share_link).
|
|
company_size:
|
|
type: array
|
|
items:
|
|
oneOf:
|
|
- type: integer
|
|
nullable: true
|
|
- type: integer
|
|
nullable: true
|
|
minItems: 2
|
|
maxItems: 2
|
|
description: Sequenceed range of company head count
|
|
company_size_on_linkedin:
|
|
type: integer
|
|
nullable: true
|
|
description: The size of the company as indicated on LinkedIn.
|
|
hq:
|
|
$ref: '#/components/schemas/CompanyLocation'
|
|
nullable: true
|
|
company_type:
|
|
$ref: '#/components/schemas/CompanyType'
|
|
nullable: true
|
|
description:
|
|
"Possible values:\n\n `EDUCATIONAL`: Educational Institution\n\
|
|
\n `GOVERNMENT_AGENCY`: Government Agency\n\n `NON_PROFIT`\
|
|
\ : Nonprofit\n\n `PARTNERSHIP` : Partnership\n\n `PRIVATELY_HELD`:\
|
|
\ Privately Held\n\n `PUBLIC_COMPANY`: Public Company\n\n \
|
|
\ `SELF_EMPLOYED`: Self-Employed\n\n `SELF_OWNED`: Sole Proprietorship"
|
|
founded_year:
|
|
type: integer
|
|
nullable: true
|
|
description: The year the company was founded.
|
|
specialities:
|
|
type: array
|
|
items:
|
|
type: string
|
|
description: "\n A list of specialities.\n "
|
|
locations:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/CompanyLocation'
|
|
name:
|
|
type: string
|
|
nullable: true
|
|
description: The name of the company.
|
|
tagline:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
A short, catchy phrase that represents the company's
|
|
mission or brand.
|
|
universal_name_id:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
A unique numerical identifier for the company
|
|
used in the LinkedIn platform.
|
|
profile_pic_url:
|
|
type: string
|
|
nullable: true
|
|
description: The URL of the company's profile picture.
|
|
background_cover_image_url:
|
|
type: string
|
|
nullable: true
|
|
description: The URL of the company's background cover image.
|
|
search_id:
|
|
type: string
|
|
description:
|
|
"\n Useable with [Job listing endpoint](#jobs-api-jobs-listing-endpoint)\n\
|
|
\ "
|
|
similar_companies:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/SimilarCompany'
|
|
affiliated_companies:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/AffiliatedCompany'
|
|
updates:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/CompanyUpdate'
|
|
description:
|
|
A list of post updates made by the company. This field is not
|
|
guaranteed to be returned. Do not rely on this attribute in production.
|
|
follower_count:
|
|
type: integer
|
|
nullable: true
|
|
description: The number of followers the company has on LinkedIn.
|
|
example:
|
|
linkedin_internal_id: '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 education,\
|
|
\ research and service that change lives."
|
|
website: http://nus.edu.sg
|
|
industry: Higher Education
|
|
company_size:
|
|
- 5001
|
|
- 10000
|
|
company_size_on_linkedin: 16084
|
|
hq: *id002
|
|
company_type: EDUCATIONAL_INSTITUTION
|
|
founded_year: 1905
|
|
specialities:
|
|
- education
|
|
- research
|
|
locations:
|
|
- country: SG
|
|
city: Singapore
|
|
postal_code: '119077'
|
|
line_1: 21 Lower Kent Ridge Road, Singapore
|
|
is_hq: true
|
|
state: null
|
|
name: National University of Singapore
|
|
tagline: Think Different - But Not Too Different
|
|
universal_name_id: 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&X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20230119T071304Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=a66e032f168972bef4ea3821705194ea1c144415a1655bdb328f961ed30e2a24
|
|
background_cover_image_url: https://s3.us-west-000.backblazeb2.com/proxycurl/company/national-university-of-singapore/cover?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20230119T071304Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=551f456b6156e4610bc3e7be43e2f9b0e4b071db5f41f56cc0e408fc1b5a1140
|
|
search_id: '5524'
|
|
similar_companies:
|
|
- *id003
|
|
- name: NUS Faculty of Arts and Social Sciences
|
|
link: https://www.linkedin.com/school/nusfass/
|
|
industry: Higher Education
|
|
location: null
|
|
affiliated_companies:
|
|
- *id004
|
|
updates:
|
|
- *id005
|
|
follower_count: 539321
|
|
AcquiredCompany:
|
|
type: object
|
|
properties:
|
|
linkedin_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n LinkedIn Company Profile URL of company that was\
|
|
\ involved\n "
|
|
crunchbase_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description: Crunchbase Profile URL of company that was involved
|
|
announced_date:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
description: Date by which this event was announced
|
|
price:
|
|
type: integer
|
|
nullable: true
|
|
description: Price of acquisition
|
|
example: &id006
|
|
linkedin_profile_url: https://www.linkedin.com/company/apple
|
|
crunchbase_profile_url: https://www.crunchbase.com/organization/apple
|
|
announced_date:
|
|
day: 1
|
|
month: 4
|
|
year: 1976
|
|
price: 300000000
|
|
Acquisitor:
|
|
type: object
|
|
properties:
|
|
linkedin_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n LinkedIn Company Profile URL of company that was\
|
|
\ involved\n "
|
|
crunchbase_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description: Crunchbase Profile URL of company that was involved
|
|
announced_date:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
description: Date by which this event was announced
|
|
price:
|
|
type: integer
|
|
nullable: true
|
|
description: Price of acquisition
|
|
example: &id007
|
|
linkedin_profile_url: https://www.linkedin.com/company/nvidia
|
|
crunchbase_profile_url: https://www.crunchbase.com/organization/nvidia
|
|
announced_date:
|
|
day: 6
|
|
month: 3
|
|
year: 2020
|
|
price: 10000
|
|
Acquisition:
|
|
type: object
|
|
properties:
|
|
acquired:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/AcquiredCompany'
|
|
acquired_by:
|
|
$ref: '#/components/schemas/Acquisitor'
|
|
nullable: true
|
|
example: &id009
|
|
acquired:
|
|
- *id006
|
|
acquired_by: *id007
|
|
Exit:
|
|
type: object
|
|
properties:
|
|
linkedin_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description: LinkedIn Profile URL of the company that has exited
|
|
crunchbase_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description: Crunchbase Profile URL of the company that has exited
|
|
name:
|
|
type: string
|
|
nullable: true
|
|
description: Name of the company
|
|
example: &id010
|
|
linkedin_profile_url: https://www.linkedin.com/company/motiondsp
|
|
crunchbase_profile_url: https://www.crunchbase.com/organization/motiondsp
|
|
name: MotionDSP
|
|
CompanyDetails:
|
|
type: object
|
|
properties:
|
|
crunchbase_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description: Crunchbase Profile URL of the company
|
|
ipo_status:
|
|
type: string
|
|
nullable: true
|
|
description: IPO status of the company
|
|
crunchbase_rank:
|
|
type: integer
|
|
nullable: true
|
|
description: A measure of prominence of this company by Crunchbase
|
|
founding_date:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
description: Date of founding
|
|
operating_status:
|
|
type: string
|
|
nullable: true
|
|
description: Status of the company's operational status
|
|
company_type:
|
|
type: string
|
|
nullable: true
|
|
description: Type of company
|
|
contact_email:
|
|
type: string
|
|
nullable: true
|
|
description: General contact email of the company
|
|
phone_number:
|
|
type: string
|
|
nullable: true
|
|
description: General contact number of the company
|
|
facebook_id:
|
|
type: string
|
|
nullable: true
|
|
description: ID of the company's official Facebook account
|
|
twitter_id:
|
|
type: string
|
|
nullable: true
|
|
description: ID of the company's official Twitter account
|
|
number_of_funding_rounds:
|
|
type: integer
|
|
nullable: true
|
|
description: Total rounds of funding that this company has raised
|
|
total_funding_amount:
|
|
type: integer
|
|
nullable: true
|
|
description: Total venture capital raised by this company
|
|
stock_symbol:
|
|
type: string
|
|
nullable: true
|
|
description: Stock symbol of this public company
|
|
ipo_date:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
description: The date by which this public company went public
|
|
number_of_lead_investors:
|
|
type: integer
|
|
nullable: true
|
|
description: Total lead investors
|
|
number_of_investors:
|
|
type: integer
|
|
nullable: true
|
|
description: Total investors
|
|
total_fund_raised:
|
|
type: integer
|
|
nullable: true
|
|
description:
|
|
"\n The total amount of funds raised (by this VC firm)\
|
|
\ to be deployed as\n subsidiary investments (applicable only for\
|
|
\ VC firms)\n "
|
|
number_of_investments:
|
|
type: integer
|
|
nullable: true
|
|
description:
|
|
"\n Total investments made by this VC firm (applicable\
|
|
\ only for VC firms)\n "
|
|
number_of_lead_investments:
|
|
type: integer
|
|
nullable: true
|
|
description:
|
|
"\n Total investments that was led by this VC firm\n\
|
|
\ (applicable only for VC firms)\n "
|
|
number_of_exits:
|
|
type: integer
|
|
nullable: true
|
|
description: Total exits by this VC (applicable only for VC firms)
|
|
number_of_acquisitions:
|
|
type: integer
|
|
nullable: true
|
|
description: Total companies acquired by this company
|
|
example: &id011
|
|
crunchbase_profile_url: https://www.crunchbase.com/organization/nvidia
|
|
ipo_status: Public
|
|
crunchbase_rank: 13
|
|
founding_date:
|
|
day: 1
|
|
month: 1
|
|
year: 2000
|
|
operating_status: Active
|
|
company_type: For Profit
|
|
contact_email: info@nvidia.com
|
|
phone_number: (140) 848-6200
|
|
facebook_id: NVIDIA.IN
|
|
twitter_id: nvidia
|
|
number_of_funding_rounds: 3
|
|
total_funding_amount: 4000000
|
|
stock_symbol: NASDAQ:NVDA
|
|
ipo_date:
|
|
day: 1
|
|
month: 1
|
|
year: 2000
|
|
number_of_lead_investors: 3
|
|
number_of_investors: 4
|
|
total_fund_raised: 1000
|
|
number_of_investments: 50
|
|
number_of_lead_investments: 3
|
|
number_of_exits: 7
|
|
number_of_acquisitions: 2
|
|
Investor:
|
|
type: object
|
|
properties:
|
|
linkedin_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description: LinkedIn Profile URL of investor
|
|
name:
|
|
type: string
|
|
nullable: true
|
|
description: Name of investor
|
|
type:
|
|
type: string
|
|
nullable: true
|
|
description: Type of investor
|
|
example: &id008
|
|
linkedin_profile_url: https://linkedin.com/company/darpa
|
|
name: DARPA
|
|
type: organization
|
|
Funding:
|
|
type: object
|
|
properties:
|
|
funding_type:
|
|
type: string
|
|
nullable: true
|
|
description: Type of funding
|
|
money_raised:
|
|
type: integer
|
|
nullable: true
|
|
description: Amount of money raised
|
|
announced_date:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
description: Date of announcement
|
|
number_of_investor:
|
|
type: integer
|
|
nullable: true
|
|
description: Number of investors in this round
|
|
investor_list:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Investor'
|
|
nullable: true
|
|
example: &id012
|
|
funding_type: Grant
|
|
money_raised: 25000000
|
|
announced_date:
|
|
day: 1
|
|
month: 1
|
|
year: 2001
|
|
number_of_investor: 1
|
|
investor_list:
|
|
- *id008
|
|
LinkedinCompany:
|
|
type: object
|
|
properties:
|
|
linkedin_internal_id:
|
|
type: string
|
|
description:
|
|
"\n LinkedIn's Internal and immutable ID of this Company\
|
|
\ profile.\n "
|
|
description:
|
|
type: string
|
|
nullable: true
|
|
description: A textual description of the company.
|
|
website:
|
|
type: string
|
|
nullable: true
|
|
description: The URL of the company's website.
|
|
industry:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
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] (https://drive.google.com/file/d/12yvYLuru7CRv3wKOIkHs5Ldocz31gJSS/view?usp=share_link).
|
|
company_size:
|
|
type: array
|
|
items:
|
|
oneOf:
|
|
- type: integer
|
|
nullable: true
|
|
- type: integer
|
|
nullable: true
|
|
minItems: 2
|
|
maxItems: 2
|
|
description: Sequenceed range of company head count
|
|
company_size_on_linkedin:
|
|
type: integer
|
|
nullable: true
|
|
description: The size of the company as indicated on LinkedIn.
|
|
hq:
|
|
$ref: '#/components/schemas/CompanyLocation'
|
|
nullable: true
|
|
company_type:
|
|
$ref: '#/components/schemas/CompanyType'
|
|
nullable: true
|
|
description:
|
|
"Possible values:\n\n `EDUCATIONAL`: Educational Institution\n\
|
|
\n `GOVERNMENT_AGENCY`: Government Agency\n\n `NON_PROFIT`\
|
|
\ : Nonprofit\n\n `PARTNERSHIP` : Partnership\n\n `PRIVATELY_HELD`:\
|
|
\ Privately Held\n\n `PUBLIC_COMPANY`: Public Company\n\n \
|
|
\ `SELF_EMPLOYED`: Self-Employed\n\n `SELF_OWNED`: Sole Proprietorship"
|
|
founded_year:
|
|
type: integer
|
|
nullable: true
|
|
description: The year the company was founded.
|
|
specialities:
|
|
type: array
|
|
items:
|
|
type: string
|
|
description: "\n A list of specialities.\n "
|
|
locations:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/CompanyLocation'
|
|
name:
|
|
type: string
|
|
nullable: true
|
|
description: The name of the company.
|
|
tagline:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
A short, catchy phrase that represents the company's
|
|
mission or brand.
|
|
universal_name_id:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
A unique numerical identifier for the company
|
|
used in the LinkedIn platform.
|
|
profile_pic_url:
|
|
type: string
|
|
nullable: true
|
|
description: The URL of the company's profile picture.
|
|
background_cover_image_url:
|
|
type: string
|
|
nullable: true
|
|
description: The URL of the company's background cover image.
|
|
search_id:
|
|
type: string
|
|
description:
|
|
"\n Useable with [Job listing endpoint](#jobs-api-jobs-listing-endpoint)\n\
|
|
\ "
|
|
similar_companies:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/SimilarCompany'
|
|
affiliated_companies:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/AffiliatedCompany'
|
|
updates:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/CompanyUpdate'
|
|
description:
|
|
A list of post updates made by the company. This field is not
|
|
guaranteed to be returned. Do not rely on this attribute in production.
|
|
follower_count:
|
|
type: integer
|
|
nullable: true
|
|
description: The number of followers the company has on LinkedIn.
|
|
acquisitions:
|
|
$ref: '#/components/schemas/Acquisition'
|
|
nullable: true
|
|
exit_data:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Exit'
|
|
nullable: true
|
|
extra:
|
|
$ref: '#/components/schemas/CompanyDetails'
|
|
nullable: true
|
|
description: Company extra when `extra=include`
|
|
funding_data:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Funding'
|
|
description: Company Funding data when `funding_data=include`
|
|
categories:
|
|
type: array
|
|
items:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
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.
|
|
customer_list:
|
|
type: array
|
|
items:
|
|
type: string
|
|
nullable: true
|
|
example:
|
|
linkedin_internal_id: '1441'
|
|
description:
|
|
"A problem isn't truly solved until it's 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.
|
|
|
|
|
|
Check out our career opportunities at careers.google.com."
|
|
website: https://goo.gle/3m1IN7m
|
|
industry: Software Development
|
|
company_size:
|
|
- 10001
|
|
- null
|
|
company_size_on_linkedin: 319856
|
|
hq:
|
|
country: US
|
|
city: Mountain View
|
|
postal_code: '94043'
|
|
line_1: 1600 Amphitheatre Parkway
|
|
is_hq: true
|
|
state: CA
|
|
company_type: PUBLIC_COMPANY
|
|
founded_year: null
|
|
specialities:
|
|
- search
|
|
- ads
|
|
locations:
|
|
- country: US
|
|
city: Mountain View
|
|
postal_code: '94043'
|
|
line_1: 1600 Amphitheatre Parkway
|
|
is_hq: true
|
|
state: CA
|
|
- country: US
|
|
city: New York
|
|
postal_code: '10011'
|
|
line_1: 111 8th Ave
|
|
is_hq: null
|
|
state: NY
|
|
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&X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20230119T060024Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=0d3500b39da8db1d2d8f5727a9ac39a7c4a88b4632ed68209dee12f06bc79aca
|
|
background_cover_image_url: https://s3.us-west-000.backblazeb2.com/proxycurl/company/google/cover?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20230119T060024Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=abb7a4b87583cffda8db24d58d906c644998fae8cbb99e98c69a35720fcd0050
|
|
search_id: '1441'
|
|
similar_companies:
|
|
- name: Amazon
|
|
link: https://www.linkedin.com/company/amazon
|
|
industry: Software Development
|
|
location: Seattle, WA
|
|
- name: Microsoft
|
|
link: https://www.linkedin.com/company/microsoft
|
|
industry: Software Development
|
|
location: Redmond, Washington
|
|
affiliated_companies:
|
|
- name: YouTube
|
|
link: https://www.linkedin.com/company/youtube
|
|
industry: Software Development
|
|
location: San Bruno, CA
|
|
- name: Google Cloud
|
|
link: https://www.linkedin.com/showcase/google-cloud
|
|
industry: Software Development
|
|
location: Mountain View, California
|
|
updates:
|
|
- article_link: null
|
|
image: https://media.licdn.com/dms/image/C5605AQFthnjiTD6Mvg/videocover-high/0/1660754102856?e=2147483647&v=beta&t=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&v=beta&t=whRRx9ULPEuyw_FgUg4Z3N3O9iksyJW7ewCGZA6ujdg
|
|
posted_on: null
|
|
text:
|
|
"Ariana, welcome to Google. Here\u2019s to a year full of growth,\
|
|
\ learning, and experiences at #LifeAtGoogle! \U0001F389"
|
|
total_likes: 397
|
|
follower_count: 27472792
|
|
acquisitions: *id009
|
|
exit_data:
|
|
- *id010
|
|
extra: *id011
|
|
funding_data:
|
|
- *id012
|
|
categories:
|
|
- artificial-intelligence
|
|
- virtual-reality
|
|
Experience:
|
|
type: object
|
|
properties:
|
|
starts_at:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
ends_at:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
company:
|
|
type: string
|
|
nullable: true
|
|
description: The company's display name.
|
|
company_linkedin_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The company's profile URL on Linkedin.\n \
|
|
\ If present, could be used with \n [Company Profile\
|
|
\ Endpoint](#company-api-company-profile-endpoint) for more info.\n \
|
|
\ "
|
|
company_facebook_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The company's profile URL on Facebook.\n \
|
|
\ "
|
|
title:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
type: string
|
|
nullable: true
|
|
location:
|
|
type: string
|
|
nullable: true
|
|
logo_url:
|
|
type: string
|
|
nullable: true
|
|
description: URL of the logo of the organisation.
|
|
example: &id013
|
|
starts_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2021
|
|
ends_at: null
|
|
company: Freedom Fund Real Estate
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/freedomfund
|
|
company_facebook_profile_url: null
|
|
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.
|
|
|
|
|
|
Website: https://www.freedomfundinvestments.com/home'
|
|
location: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647&v=beta&t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s
|
|
Education:
|
|
type: object
|
|
properties:
|
|
starts_at:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
ends_at:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
field_of_study:
|
|
type: string
|
|
nullable: true
|
|
degree_name:
|
|
type: string
|
|
nullable: true
|
|
school:
|
|
type: string
|
|
nullable: true
|
|
school_linkedin_profile_url:
|
|
type: string
|
|
nullable: true
|
|
school_facebook_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The school's profile URL on Facebook.\n \
|
|
\ "
|
|
description:
|
|
type: string
|
|
nullable: true
|
|
logo_url:
|
|
type: string
|
|
nullable: true
|
|
grade:
|
|
type: string
|
|
activities_and_societies:
|
|
type: string
|
|
example: &id014
|
|
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/
|
|
school_facebook_profile_url: null
|
|
description: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQGVi9eAHgWxFw/company-logo_100_100/0/1673448029676?e=2147483647&v=beta&t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE
|
|
grade: null
|
|
activities_and_societies: null
|
|
AccomplishmentOrg:
|
|
type: object
|
|
properties:
|
|
starts_at:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
ends_at:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
org_name:
|
|
type: string
|
|
nullable: true
|
|
title:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
type: string
|
|
nullable: true
|
|
example: &id015
|
|
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:
|
|
type: object
|
|
properties:
|
|
name:
|
|
type: string
|
|
nullable: true
|
|
description: Name of the publication.
|
|
publisher:
|
|
type: string
|
|
nullable: true
|
|
description: The publishing organisation body.
|
|
published_on:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
description: Date of publication.
|
|
description:
|
|
type: string
|
|
nullable: true
|
|
description: Description of the publication.
|
|
url:
|
|
type: string
|
|
nullable: true
|
|
description: URL of the publication.
|
|
example: &id016
|
|
name: Nobel Peace Prize
|
|
publisher: Acme Corp
|
|
published_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
url: https://example.com
|
|
HonourAward:
|
|
type: object
|
|
properties:
|
|
title:
|
|
type: string
|
|
nullable: true
|
|
description: Title of the honour/award.
|
|
issuer:
|
|
type: string
|
|
nullable: true
|
|
description: The organisation body issuing this honour/award.
|
|
issued_on:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
description: Date that this honour/awared was issued.
|
|
description:
|
|
type: string
|
|
nullable: true
|
|
description: Description of the honour/award.
|
|
example: &id017
|
|
title: Nobel Peace Prize
|
|
issuer: Acme Corp
|
|
issued_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
Patent:
|
|
type: object
|
|
properties:
|
|
title:
|
|
type: string
|
|
nullable: true
|
|
description: Title of the patent.
|
|
issuer:
|
|
type: string
|
|
nullable: true
|
|
description: The organisation body that issued the patent.
|
|
issued_on:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
description: Date of patent issuance.
|
|
description:
|
|
type: string
|
|
nullable: true
|
|
description: Description of the patent.
|
|
application_number:
|
|
type: string
|
|
nullable: true
|
|
description: Numerical representation that identifies the patent.
|
|
patent_number:
|
|
type: string
|
|
nullable: true
|
|
description: Application number of the patent.
|
|
url:
|
|
type: string
|
|
nullable: true
|
|
example: &id018
|
|
title: The art of war
|
|
issuer: Acme Corp
|
|
issued_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
application_number: '123'
|
|
patent_number: '123'
|
|
url: null
|
|
Course:
|
|
type: object
|
|
properties:
|
|
name:
|
|
type: string
|
|
nullable: true
|
|
description: Name of the course
|
|
number:
|
|
type: string
|
|
nullable: true
|
|
description: The numerical representation of the course
|
|
example: &id019
|
|
name: The course about ABCs
|
|
number: '123'
|
|
Project:
|
|
type: object
|
|
properties:
|
|
starts_at:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
ends_at:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
title:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n Name of the project that has been or is\
|
|
\ currently being worked on.\n "
|
|
description:
|
|
type: string
|
|
nullable: true
|
|
description: Description of the project.
|
|
url:
|
|
type: string
|
|
nullable: true
|
|
description: A web location related to the project.
|
|
example: &id020
|
|
starts_at:
|
|
day: 1
|
|
month: 3
|
|
year: 2015
|
|
ends_at: null
|
|
title: gMessenger
|
|
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's message content to the page in real time, with no page refresh
|
|
required. gMessenger also includes custom authentication with three different
|
|
permissions levels.
|
|
url: http://gmessenger.herokuapp.com/
|
|
TestScore:
|
|
type: object
|
|
properties:
|
|
name:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n Title of the course for which test score\
|
|
\ was derived from.\n "
|
|
score:
|
|
type: string
|
|
nullable: true
|
|
description: Test score
|
|
date_on:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
description: Date of test was assesed.
|
|
description:
|
|
type: string
|
|
nullable: true
|
|
description: Description of the test score.
|
|
example: &id021
|
|
name: CS1101S
|
|
score: A
|
|
date_on:
|
|
day: 1
|
|
month: 1
|
|
year: 2010
|
|
description: Nailed it without studying.
|
|
VolunteeringExperience:
|
|
type: object
|
|
properties:
|
|
starts_at:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
ends_at:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
title:
|
|
type: string
|
|
nullable: true
|
|
description: Name of volunteer activity.
|
|
cause:
|
|
type: string
|
|
nullable: true
|
|
company:
|
|
type: string
|
|
nullable: true
|
|
description: The company's display name.
|
|
company_linkedin_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The company's profile URL.\n If present,\
|
|
\ could be used with \n [Company Profile Endpoint](#company-api-company-profile-endpoint)\
|
|
\ for more info.\n "
|
|
description:
|
|
type: string
|
|
nullable: true
|
|
logo_url:
|
|
type: string
|
|
nullable: true
|
|
description: URL of the logo of the organisation.
|
|
example: &id022
|
|
starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2012
|
|
ends_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2016
|
|
title: Surveyor
|
|
cause: To help the world
|
|
company: Microsoft
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/microsoft
|
|
description: null
|
|
logo_url: null
|
|
Certification:
|
|
type: object
|
|
properties:
|
|
starts_at:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
ends_at:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
name:
|
|
type: string
|
|
nullable: true
|
|
description: Name of the course or program.
|
|
license_number:
|
|
type: string
|
|
nullable: true
|
|
display_source:
|
|
type: string
|
|
nullable: true
|
|
authority:
|
|
type: string
|
|
nullable: true
|
|
description: The organisation body issuing this certificate.
|
|
url:
|
|
type: string
|
|
nullable: true
|
|
example: &id023
|
|
starts_at: null
|
|
ends_at: null
|
|
name:
|
|
SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean Practices
|
|
in the SAFe Enterprise)
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scaled Agile, Inc.
|
|
url: null
|
|
PeopleAlsoViewed:
|
|
type: object
|
|
properties:
|
|
link:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n URL of the profile.\n Useable with\
|
|
\ [Person profile endpoint](#people-api-person-profile-endpoint)\n \
|
|
\ "
|
|
name:
|
|
type: string
|
|
nullable: true
|
|
summary:
|
|
type: string
|
|
nullable: true
|
|
location:
|
|
type: string
|
|
nullable: true
|
|
example: &id024
|
|
link: https://www.linkedin.com/in/johndoe
|
|
name: John Doe
|
|
summary: Software Engineer at Google
|
|
location: Singapore
|
|
Activity:
|
|
type: object
|
|
properties:
|
|
title:
|
|
type: string
|
|
nullable: true
|
|
link:
|
|
type: string
|
|
nullable: true
|
|
activity_status:
|
|
type: string
|
|
nullable: true
|
|
example: &id025
|
|
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:
|
|
type: object
|
|
properties:
|
|
name:
|
|
type: string
|
|
nullable: true
|
|
link:
|
|
type: string
|
|
nullable: true
|
|
summary:
|
|
type: string
|
|
nullable: true
|
|
location:
|
|
type: string
|
|
nullable: true
|
|
example: &id026
|
|
name: John Martinez
|
|
link: https://www.linkedin.com/in/john-martinez-90384a229
|
|
summary:
|
|
"Owner of Fight or Flight Medical Consultants, LLC , Owner Marty\u2019\
|
|
s Hardwood Works"
|
|
location: San Antonio, TX
|
|
Article:
|
|
type: object
|
|
properties:
|
|
title:
|
|
type: string
|
|
nullable: true
|
|
link:
|
|
type: string
|
|
nullable: true
|
|
published_date:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
author:
|
|
type: string
|
|
nullable: true
|
|
image_url:
|
|
type: string
|
|
nullable: true
|
|
example: &id027
|
|
title: Manufacturing opportunity
|
|
link: https://www.linkedin.com/pulse/manufacturing-opportunity-bill-gates/
|
|
published_date:
|
|
day: 27
|
|
month: 11
|
|
year: 2019
|
|
author: Bill Gates
|
|
image_url: https://media-exp1.licdn.com/dms/image/C4E12AQFftuPi0UiqWA/article-cover_image-shrink_720_1280/0/1574801149114?e=1640822400&v=beta&t=ZAe3ERmQCM8QHGmRPS2LJ-C76GD5PR7FBHMVL4Z6iVg
|
|
PersonGroup:
|
|
type: object
|
|
properties:
|
|
profile_pic_url:
|
|
type: string
|
|
nullable: true
|
|
description: The URL to the profile picture of this LinkedIn Group
|
|
name:
|
|
type: string
|
|
nullable: true
|
|
description: Name of LinkedIn group for which this user is in
|
|
url:
|
|
type: string
|
|
nullable: true
|
|
description: URL to the LinkedIn Group
|
|
example: &id028
|
|
profile_pic_url: https://media-exp1.licdn.com/dms/image/C4D07AQG9IK9V0pk3mQ/group-logo_image-shrink_92x92/0/1631371531293?e=1642060800&v=beta&t=UK1tfIppWa-Nx7k9whmm5f9XdZoBdJhApf9N3ke3204
|
|
name: Hadoop Users
|
|
url: https://www.linkedin.com/groups/988957
|
|
InferredSalary:
|
|
type: object
|
|
properties:
|
|
min:
|
|
type: number
|
|
nullable: true
|
|
max:
|
|
type: number
|
|
nullable: true
|
|
example: &id029
|
|
min: 35000
|
|
max: 45000
|
|
PersonExtra:
|
|
type: object
|
|
properties:
|
|
github_profile_id:
|
|
type: string
|
|
nullable: true
|
|
description: This profile's Github account.
|
|
facebook_profile_id:
|
|
type: string
|
|
nullable: true
|
|
description: This profile's Facebook account.
|
|
twitter_profile_id:
|
|
type: string
|
|
nullable: true
|
|
description: This profile's twitter account.
|
|
website:
|
|
type: string
|
|
nullable: true
|
|
description: This account's website listed on his profile.
|
|
example: &id030
|
|
github_profile_id: github-username
|
|
facebook_profile_id: facebook-username
|
|
twitter_profile_id: twitter-username
|
|
website: https://proxycurl.com
|
|
PersonEndpointResponse:
|
|
type: object
|
|
properties:
|
|
public_identifier:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The vanity identifier of the public LinkedIn\
|
|
\ profile.\n The vanity identifier comes after the `/in/`\
|
|
\ part of the LinkedIn Profile URL\n in the following format:\
|
|
\ `https://www.linkedin.com/in/<public_identifier>`\n "
|
|
profile_pic_url:
|
|
type: string
|
|
description:
|
|
"\n A temporary link to the user's profile picture\
|
|
\ that is valid for 30 minutes. \n The temporal nature\
|
|
\ of the link is by design to prevent having Proxycurl be the mirror for\
|
|
\ the images.\n The developer is expected to handle these\
|
|
\ images by downloading the image and re-hosting the image.\n \
|
|
\ See [this post](https://nubela.co/blog/why-is-the-api-returning-s3-links-for-profile-pictures-scraped-from-linkedin-profiles/)\
|
|
\ for context.\n Some profile pictures might be of the\
|
|
\ standard LinkedIn's profile picture placeholder. It is so because. See\
|
|
\ [this post](https://nubela.co/blog/why-do-most-linkedin-profiles-fetched-via-the-person-profile-endpoint-return-a-placeholder-profile-picture/)\
|
|
\ for context.\n "
|
|
background_cover_image_url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n A temporary link to the user's background\
|
|
\ cover picture\n that is valid for 30 minutes.\n \
|
|
\ The temporal nature of the link is by design to prevent\n\
|
|
\ having Proxycurl be the mirror for the images.\n \
|
|
\ The developer is expected to handle these images \n \
|
|
\ by downloading the image and re-hosting the image. \n \
|
|
\ See [this post](https://nubela.co/blog/why-is-the-api-returning-s3-links-for-profile-pictures-scraped-from-linkedin-profiles/)\
|
|
\ for context.\n "
|
|
first_name:
|
|
type: string
|
|
nullable: true
|
|
description: First name of the user.
|
|
last_name:
|
|
type: string
|
|
nullable: true
|
|
description: Last name of the user.
|
|
full_name:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n Full name of the user (`first_name` + `last_name`)\n\
|
|
\ "
|
|
follower_count:
|
|
type: integer
|
|
description: Follower count for this profile
|
|
occupation:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The title and company name of the user's\
|
|
\ current employment.\n "
|
|
headline:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The tagline written by the user for his\
|
|
\ profile.\n "
|
|
summary:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n A blurb (longer than the tagline) written\
|
|
\ by the user for his profile.\n "
|
|
country:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The user's country of residence depicted\
|
|
\ by\n a 2-letter country code (ISO 3166-1 alpha-2).\n\
|
|
\ "
|
|
country_full_name:
|
|
type: string
|
|
nullable: true
|
|
description: The user's country of residence, in English words.
|
|
city:
|
|
type: string
|
|
nullable: true
|
|
description: The city that the user is living at.
|
|
state:
|
|
type: string
|
|
nullable: true
|
|
description: The state that the user is living at.
|
|
experiences:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Experience'
|
|
description: The user's list of historic work experiences.
|
|
education:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Education'
|
|
description: The user's list of education background.
|
|
languages:
|
|
type: array
|
|
items:
|
|
type: string
|
|
description:
|
|
"\n A list of languages that the user claims\
|
|
\ to be familiar with,\n and has added to his/her profile.\n\
|
|
\ Do note that we do not have the proficiency level as\n\
|
|
\ that data point is not available on a public LinkedIn\
|
|
\ profile.\n "
|
|
accomplishment_organisations:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/AccomplishmentOrg'
|
|
description:
|
|
"\n List of noteworthy organizations that this\
|
|
\ user is part of.\n "
|
|
accomplishment_publications:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Publication'
|
|
description:
|
|
"\n List of noteworthy publications that this\
|
|
\ user has partook in.\n "
|
|
accomplishment_honors_awards:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/HonourAward'
|
|
description:
|
|
"\n List of noteworthy honours and awards that\
|
|
\ this user has won.\n "
|
|
accomplishment_patents:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Patent'
|
|
description: List of noteworthy patents won by this user.
|
|
accomplishment_courses:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Course'
|
|
description: List of noteworthy courses partook by this user.
|
|
accomplishment_projects:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Project'
|
|
description:
|
|
"\n List of noteworthy projects undertaken by\
|
|
\ this user.\n "
|
|
accomplishment_test_scores:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/TestScore'
|
|
description:
|
|
"\n List of noteworthy test scores accomplished\
|
|
\ by this user.\n "
|
|
volunteer_work:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/VolunteeringExperience'
|
|
description: List of historic volunteer work experiences.
|
|
certifications:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Certification'
|
|
description:
|
|
"\n List of noteworthy certifications accomplished\
|
|
\ by this user.\n "
|
|
connections:
|
|
type: integer
|
|
nullable: true
|
|
description: Total *count* of LinkedIn connections.
|
|
people_also_viewed:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/PeopleAlsoViewed'
|
|
description:
|
|
"\n A list of other LinkedIn profiles closely\
|
|
\ related to this user.\n "
|
|
recommendations:
|
|
type: array
|
|
items:
|
|
type: string
|
|
description:
|
|
"\n List of recommendations made by other users\
|
|
\ about this profile.\n "
|
|
activities:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Activity'
|
|
description:
|
|
A list of LinkedIn status activities. This field is not guaranteed
|
|
to be returned. Do not rely on this attribute in production.
|
|
similarly_named_profiles:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/SimilarProfile'
|
|
description:
|
|
"\n A list of other LinkedIn profiles with similar\
|
|
\ names.\n "
|
|
articles:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Article'
|
|
description:
|
|
"\n A list of content-based articles posted\
|
|
\ by this user. This field is not guaranteed to be returned. Do not rely\
|
|
\ on this attribute in production.\n "
|
|
groups:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/PersonGroup'
|
|
description:
|
|
"\n A list of LinkedIn groups that this user\
|
|
\ is a part of.\",\n "
|
|
skills:
|
|
type: array
|
|
items:
|
|
type: string
|
|
description:
|
|
A list of keyword-based skills that this user boasts of on
|
|
his LinkedIn profile.
|
|
inferred_salary:
|
|
$ref: '#/components/schemas/InferredSalary'
|
|
nullable: true
|
|
description:
|
|
A salary range inferred from the user's current job title and
|
|
company.
|
|
gender:
|
|
type: string
|
|
nullable: true
|
|
description: Gender of the user.
|
|
birth_date:
|
|
$ref: '#/components/schemas/Date'
|
|
nullable: true
|
|
description: Birth date of the user.
|
|
industry:
|
|
type: string
|
|
nullable: true
|
|
description: Industry that the user works in.
|
|
extra:
|
|
$ref: '#/components/schemas/PersonExtra'
|
|
nullable: true
|
|
description: A bundle of extra data on this user.
|
|
interests:
|
|
type: array
|
|
items:
|
|
type: string
|
|
description: A list of interests that the user has.
|
|
personal_emails:
|
|
type: array
|
|
items:
|
|
type: string
|
|
description: A list of personal emails associated with this user.
|
|
personal_numbers:
|
|
type: array
|
|
items:
|
|
type: string
|
|
description:
|
|
A list of personal mobile phone numbers associated with this
|
|
user.
|
|
example:
|
|
public_identifier: johnrmarty
|
|
profile_pic_url: https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647&v=beta&t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI
|
|
background_cover_image_url: https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647&v=beta&t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU
|
|
first_name: John
|
|
last_name: Marty
|
|
full_name: John Marty
|
|
follower_count: null
|
|
occupation: Co-Founder at Freedom Fund Real Estate
|
|
headline: Financial Freedom through Real Estate - LinkedIn Top Voice
|
|
summary:
|
|
"Most people go through life lost, disengaged, and unhappy at work\
|
|
\ and in their lives - I'm 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's\n\
|
|
\nQ: Can you speak at my Company, University, event or podcast?\nA: I'd\
|
|
\ love to! I've 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'm a #3 (The Achiever)\n\nLETS CONNECT:\n\u2611\uFE0F Email: JohnRmarty@gmail.com\
|
|
\ (don't forget that \"R\"....The other guy gets my emails all the time)"
|
|
country: US
|
|
country_full_name: United States of America
|
|
city: Seattle
|
|
state: Washington
|
|
experiences:
|
|
- *id013
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2021
|
|
ends_at: null
|
|
company: Mindset Reset Podcast
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/mindset-reset-podcast
|
|
company_facebook_profile_url: null
|
|
title: Founder
|
|
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"
|
|
location: Denver, Colorado, United States
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQF9QJVQm3SOvA/company-logo_100_100/0/1614527476576?e=2147483647&v=beta&t=m3tx83nMN-E3XQFoJG0Wmch8U4qKnJ9i--5NSAfffC0
|
|
education:
|
|
- *id014
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at:
|
|
day: 31
|
|
month: 12
|
|
year: 2015
|
|
field_of_study: School of Software Development
|
|
degree_name: null
|
|
school: Galvanize Inc
|
|
school_linkedin_profile_url: https://www.linkedin.com/school/galvanize-it/
|
|
school_facebook_profile_url: null
|
|
description:
|
|
rails, ruby, rspec, capybara, bootstrap, css, html, api integration,
|
|
Jquery, Javascript
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQFKNxOZ4X0g8Q/company-logo_100_100/0/1670610916338?e=2147483647&v=beta&t=t7ImfhmsuIJ7HJGHEbPJ2suxdslKhzp9v-5h9_G4sWE
|
|
grade: null
|
|
activities_and_societies: null
|
|
languages:
|
|
- English
|
|
- Spanish
|
|
accomplishment_organisations:
|
|
- *id015
|
|
accomplishment_publications:
|
|
- *id016
|
|
accomplishment_honors_awards:
|
|
- *id017
|
|
accomplishment_patents:
|
|
- *id018
|
|
accomplishment_courses:
|
|
- *id019
|
|
accomplishment_projects:
|
|
- *id020
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at: null
|
|
title: Taskly
|
|
description:
|
|
A task and project management responsive web app utilizing
|
|
Ruby on Rails - CSS and HTML
|
|
url: https://hidden-coast-7204.herokuapp.com/
|
|
accomplishment_test_scores:
|
|
- *id021
|
|
volunteer_work:
|
|
- *id022
|
|
certifications:
|
|
- *id023
|
|
- starts_at: null
|
|
ends_at: null
|
|
name: SCRUM Alliance Certified Product Owner
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scrum Alliance
|
|
url: null
|
|
connections: 500
|
|
people_also_viewed:
|
|
- *id024
|
|
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've 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!"
|
|
activities:
|
|
- *id025
|
|
similarly_named_profiles:
|
|
- *id026
|
|
- name: John Marty
|
|
link: https://www.linkedin.com/in/senatormarty
|
|
summary: null
|
|
location: St Paul, MN
|
|
articles:
|
|
- *id027
|
|
groups:
|
|
- *id028
|
|
inferred_salary: *id029
|
|
gender: male
|
|
birth_date:
|
|
day: 1
|
|
month: 1
|
|
year: 1990
|
|
industry: government administration
|
|
extra: *id030
|
|
interests:
|
|
- education
|
|
- health
|
|
- human rights
|
|
personal_emails:
|
|
- abc@gmail.com
|
|
- bcd@gmail.com
|
|
- cde@@outlook.com
|
|
personal_numbers:
|
|
- '+6512345678'
|
|
- '+6285123450953'
|
|
- '+6502300340'
|
|
CompanyCustomer:
|
|
type: object
|
|
properties:
|
|
linkedin_company_profile_url:
|
|
type: string
|
|
description: LinkedIn Company Profile URL of a probable customer
|
|
twitter_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description: Twitter Profile URL of a probable customer
|
|
email:
|
|
type: string
|
|
nullable: true
|
|
description: General Email address of company (if any)
|
|
example: &id031
|
|
linkedin_company_profile_url: https://www.linkedin.com/company/spire-solicitors-llp
|
|
twitter_profile_url: https://twitter.com/spirellp
|
|
email: info@spiresolicitors.co.uk
|
|
CustomerList:
|
|
type: object
|
|
properties:
|
|
companies:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/CompanyCustomer'
|
|
description: A list of companies that are probable customers.
|
|
next_page:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The API URI that will lead to the next page of results.\
|
|
\ This will be null for the final page.\n "
|
|
example:
|
|
companies:
|
|
- *id031
|
|
- linkedin_company_profile_url: https://www.linkedin.com/company/mall-wood-insurance-services-ltd
|
|
twitter_profile_url: https://twitter.com/draytonins
|
|
email: hello@example.com
|
|
next_page: null
|
|
CustomerCount:
|
|
type: object
|
|
properties:
|
|
company_count:
|
|
type: integer
|
|
nullable: true
|
|
description: A count of of companies that are probable customers.
|
|
example:
|
|
company_count: 125
|
|
PublicPerson:
|
|
type: object
|
|
properties:
|
|
public_identifier:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The vanity identifier of the public LinkedIn\
|
|
\ profile.\n The vanity identifier comes after the `/in/`\
|
|
\ part of the LinkedIn Profile URL\n in the following format:\
|
|
\ `https://www.linkedin.com/in/<public_identifier>`\n "
|
|
profile_pic_url:
|
|
type: string
|
|
description:
|
|
"\n A temporary link to the user's profile picture\
|
|
\ that is valid for 30 minutes. \n The temporal nature\
|
|
\ of the link is by design to prevent having Proxycurl be the mirror for\
|
|
\ the images.\n The developer is expected to handle these\
|
|
\ images by downloading the image and re-hosting the image.\n \
|
|
\ See [this post](https://nubela.co/blog/why-is-the-api-returning-s3-links-for-profile-pictures-scraped-from-linkedin-profiles/)\
|
|
\ for context.\n Some profile pictures might be of the\
|
|
\ standard LinkedIn's profile picture placeholder. It is so because. See\
|
|
\ [this post](https://nubela.co/blog/why-do-most-linkedin-profiles-fetched-via-the-person-profile-endpoint-return-a-placeholder-profile-picture/)\
|
|
\ for context.\n "
|
|
background_cover_image_url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n A temporary link to the user's background\
|
|
\ cover picture\n that is valid for 30 minutes.\n \
|
|
\ The temporal nature of the link is by design to prevent\n\
|
|
\ having Proxycurl be the mirror for the images.\n \
|
|
\ The developer is expected to handle these images \n \
|
|
\ by downloading the image and re-hosting the image. \n \
|
|
\ See [this post](https://nubela.co/blog/why-is-the-api-returning-s3-links-for-profile-pictures-scraped-from-linkedin-profiles/)\
|
|
\ for context.\n "
|
|
first_name:
|
|
type: string
|
|
nullable: true
|
|
description: First name of the user.
|
|
last_name:
|
|
type: string
|
|
nullable: true
|
|
description: Last name of the user.
|
|
full_name:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n Full name of the user (`first_name` + `last_name`)\n\
|
|
\ "
|
|
follower_count:
|
|
type: integer
|
|
description: Follower count for this profile
|
|
occupation:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The title and company name of the user's\
|
|
\ current employment.\n "
|
|
headline:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The tagline written by the user for his\
|
|
\ profile.\n "
|
|
summary:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n A blurb (longer than the tagline) written\
|
|
\ by the user for his profile.\n "
|
|
country:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The user's country of residence depicted\
|
|
\ by\n a 2-letter country code (ISO 3166-1 alpha-2).\n\
|
|
\ "
|
|
country_full_name:
|
|
type: string
|
|
nullable: true
|
|
description: The user's country of residence, in English words.
|
|
city:
|
|
type: string
|
|
nullable: true
|
|
description: The city that the user is living at.
|
|
state:
|
|
type: string
|
|
nullable: true
|
|
description: The state that the user is living at.
|
|
experiences:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Experience'
|
|
description: The user's list of historic work experiences.
|
|
education:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Education'
|
|
description: The user's list of education background.
|
|
languages:
|
|
type: array
|
|
items:
|
|
type: string
|
|
description:
|
|
"\n A list of languages that the user claims\
|
|
\ to be familiar with,\n and has added to his/her profile.\n\
|
|
\ Do note that we do not have the proficiency level as\n\
|
|
\ that data point is not available on a public LinkedIn\
|
|
\ profile.\n "
|
|
accomplishment_organisations:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/AccomplishmentOrg'
|
|
description:
|
|
"\n List of noteworthy organizations that this\
|
|
\ user is part of.\n "
|
|
accomplishment_publications:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Publication'
|
|
description:
|
|
"\n List of noteworthy publications that this\
|
|
\ user has partook in.\n "
|
|
accomplishment_honors_awards:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/HonourAward'
|
|
description:
|
|
"\n List of noteworthy honours and awards that\
|
|
\ this user has won.\n "
|
|
accomplishment_patents:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Patent'
|
|
description: List of noteworthy patents won by this user.
|
|
accomplishment_courses:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Course'
|
|
description: List of noteworthy courses partook by this user.
|
|
accomplishment_projects:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Project'
|
|
description:
|
|
"\n List of noteworthy projects undertaken by\
|
|
\ this user.\n "
|
|
accomplishment_test_scores:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/TestScore'
|
|
description:
|
|
"\n List of noteworthy test scores accomplished\
|
|
\ by this user.\n "
|
|
volunteer_work:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/VolunteeringExperience'
|
|
description: List of historic volunteer work experiences.
|
|
certifications:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Certification'
|
|
description:
|
|
"\n List of noteworthy certifications accomplished\
|
|
\ by this user.\n "
|
|
connections:
|
|
type: integer
|
|
nullable: true
|
|
description: Total *count* of LinkedIn connections.
|
|
people_also_viewed:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/PeopleAlsoViewed'
|
|
description:
|
|
"\n A list of other LinkedIn profiles closely\
|
|
\ related to this user.\n "
|
|
recommendations:
|
|
type: array
|
|
items:
|
|
type: string
|
|
description:
|
|
"\n List of recommendations made by other users\
|
|
\ about this profile.\n "
|
|
activities:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Activity'
|
|
description:
|
|
A list of LinkedIn status activities. This field is not guaranteed
|
|
to be returned. Do not rely on this attribute in production.
|
|
similarly_named_profiles:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/SimilarProfile'
|
|
description:
|
|
"\n A list of other LinkedIn profiles with similar\
|
|
\ names.\n "
|
|
articles:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Article'
|
|
description:
|
|
"\n A list of content-based articles posted\
|
|
\ by this user. This field is not guaranteed to be returned. Do not rely\
|
|
\ on this attribute in production.\n "
|
|
groups:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/PersonGroup'
|
|
description:
|
|
"\n A list of LinkedIn groups that this user\
|
|
\ is a part of.\",\n "
|
|
skills:
|
|
type: array
|
|
items:
|
|
type: string
|
|
description:
|
|
A list of keyword-based skills that this user boasts of on
|
|
his LinkedIn profile.
|
|
example: &id032
|
|
public_identifier: williamhgates
|
|
profile_pic_url: https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647&v=beta&t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU
|
|
background_cover_image_url: null
|
|
first_name: Bill
|
|
last_name: Gates
|
|
full_name: Bill Gates
|
|
follower_count: null
|
|
occupation: Co-chair at Bill & Melinda Gates Foundation
|
|
headline: Co-chair, Bill & Melinda Gates Foundation
|
|
summary:
|
|
Co-chair of the Bill & Melinda Gates Foundation. Founder of Breakthrough
|
|
Energy. Co-founder of Microsoft. Voracious reader. Avid traveler. Active
|
|
blogger.
|
|
country: US
|
|
country_full_name: United States of America
|
|
city: Seattle
|
|
state: Washington
|
|
experiences:
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at: null
|
|
company: 'Breakthrough Energy '
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/breakthrough-energy/
|
|
company_facebook_profile_url: null
|
|
title: Founder
|
|
description: null
|
|
location: null
|
|
logo_url: https://media-exp1.licdn.com/dms/image/C4D0BAQGwD9vNu044FA/company-logo_400_400/0/1601560874941?e=1672876800&v=beta&t=VKb6OAHEwlnazKYKm4fc9go-y4zkUv2BT6tosOdQ54Y
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2000
|
|
ends_at: null
|
|
company: Bill & Melinda Gates Foundation
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/bill-&-melinda-gates-foundation/
|
|
company_facebook_profile_url: null
|
|
title: Co-chair
|
|
description: null
|
|
location: null
|
|
logo_url: https://media-exp1.licdn.com/dms/image/C4E0BAQE7Na_mKQhIJg/company-logo_400_400/0/1633731810932?e=1672876800&v=beta&t=Mz_ntwD4meCMcgo1L3JqDxBQRabFLIesd0Yz2ciAXNs
|
|
education:
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 1973
|
|
ends_at:
|
|
day: 31
|
|
month: 12
|
|
year: 1975
|
|
field_of_study: null
|
|
degree_name: null
|
|
school: Harvard University
|
|
school_linkedin_profile_url: null
|
|
school_facebook_profile_url: null
|
|
description: null
|
|
logo_url: https://media-exp1.licdn.com/dms/image/C4E0BAQF5t62bcL0e9g/company-logo_400_400/0/1519855919126?e=1672876800&v=beta&t=9twXof1JlnNHfFprrDMi-C1Kp55HTT4ahINKHRflUHw
|
|
grade: null
|
|
activities_and_societies: null
|
|
- starts_at: null
|
|
ends_at: null
|
|
field_of_study: null
|
|
degree_name: null
|
|
school: Lakeside School
|
|
school_linkedin_profile_url: null
|
|
school_facebook_profile_url: null
|
|
description: null
|
|
logo_url: https://media-exp1.licdn.com/dms/image/C4D0BAQENlfOPKBEk3Q/company-logo_400_400/0/1519856497259?e=1672876800&v=beta&t=v7nJTPaJMfH7WOBjb22dyvNKxAgdPdVd8uLCUkMB1LQ
|
|
grade: null
|
|
activities_and_societies: null
|
|
languages:
|
|
- English
|
|
- Chinese
|
|
- Japanese
|
|
accomplishment_organisations:
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2012
|
|
ends_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2016
|
|
org_name: Microsoft
|
|
title: Software Developer
|
|
description: null
|
|
accomplishment_publications:
|
|
- name: Nobel Peace Prize
|
|
publisher: Acme Corp
|
|
published_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
url: https://example.com
|
|
accomplishment_honors_awards:
|
|
- title: Nobel Peace Prize
|
|
issuer: Acme Corp
|
|
issued_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
accomplishment_patents:
|
|
- title: The art of war
|
|
issuer: Acme Corp
|
|
issued_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
application_number: '123'
|
|
patent_number: '123'
|
|
url: null
|
|
accomplishment_courses:
|
|
- name: The course about ABCs
|
|
number: '123'
|
|
accomplishment_projects: []
|
|
accomplishment_test_scores:
|
|
- name: CS1101S
|
|
score: A
|
|
date_on:
|
|
day: 1
|
|
month: 1
|
|
year: 2010
|
|
description: Nailed it without studying.
|
|
volunteer_work:
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2012
|
|
ends_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2016
|
|
title: Surveyor
|
|
cause: To help the world
|
|
company: Microsoft
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/microsoft
|
|
description: null
|
|
logo_url: null
|
|
certifications: []
|
|
connections: null
|
|
people_also_viewed:
|
|
- link: https://www.linkedin.com/in/johndoe
|
|
name: John Doe
|
|
summary: Software Engineer at Google
|
|
location: Singapore
|
|
recommendations:
|
|
- Professional and dedicated approach towards clients and collegues.
|
|
activities:
|
|
- title: I am hiring!
|
|
link: https://www.linkedin.com/feed/update/urn:li:activity:666
|
|
activity_status: posted
|
|
similarly_named_profiles: null
|
|
articles:
|
|
- title: Manufacturing opportunity
|
|
link: https://www.linkedin.com/pulse/manufacturing-opportunity-bill-gates/
|
|
published_date:
|
|
day: 27
|
|
month: 11
|
|
year: 2019
|
|
author: Bill Gates
|
|
image_url: https://media-exp1.licdn.com/dms/image/C4E12AQFftuPi0UiqWA/article-cover_image-shrink_720_1280/0/1574801149114?e=1640822400&v=beta&t=ZAe3ERmQCM8QHGmRPS2LJ-C76GD5PR7FBHMVL4Z6iVg
|
|
groups:
|
|
- profile_pic_url: https://media-exp1.licdn.com/dms/image/C4D07AQG9IK9V0pk3mQ/group-logo_image-shrink_92x92/0/1631371531293?e=1642060800&v=beta&t=UK1tfIppWa-Nx7k9whmm5f9XdZoBdJhApf9N3ke3204
|
|
name: Hadoop Users
|
|
url: https://www.linkedin.com/groups/988957
|
|
Employee:
|
|
type: object
|
|
properties:
|
|
profile_url:
|
|
type: string
|
|
description: "\n LinkedIn Profile URL of the employee.\n "
|
|
profile:
|
|
$ref: '#/components/schemas/PublicPerson'
|
|
nullable: true
|
|
description:
|
|
"\n Enriched profile data of the employee.\n \
|
|
\ "
|
|
last_updated:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n ISO 8601 timestamp since the enriched profile\
|
|
\ was last scraped.\n "
|
|
example: &id033
|
|
profile_url: https://www.linkedin.com/in/williamhgates
|
|
profile: *id032
|
|
last_updated: '2023-10-26T11:34:30Z'
|
|
EmployeeList:
|
|
type: object
|
|
properties:
|
|
employees:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Employee'
|
|
description:
|
|
"\n A list of employee profiles (if enriched) and their\
|
|
\ associated profile URL.\n "
|
|
next_page:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The API URI that will lead to the next page of results.\
|
|
\ This will be null for the final page.\n "
|
|
example:
|
|
employees:
|
|
- *id033
|
|
next_page: null
|
|
EmployeeCount:
|
|
type: object
|
|
properties:
|
|
total_employee:
|
|
type: integer
|
|
linkedin_employee_count:
|
|
type: integer
|
|
nullable: true
|
|
description:
|
|
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.
|
|
linkdb_employee_count:
|
|
type: integer
|
|
description:
|
|
The total number of employees found in LinkDB for this company.
|
|
This value is limited by pre-crawled LinkedIn profiles stored in [LinkDB](https://nubela.co/proxycurl/linkdb)
|
|
regression_notice:
|
|
type: string
|
|
example:
|
|
linkedin_employee_count: 529274
|
|
linkdb_employee_count: 3
|
|
ProfilePicture:
|
|
type: object
|
|
properties:
|
|
tmp_profile_pic_url:
|
|
type: string
|
|
description:
|
|
"\n Temporary URL to the profile picture (valid\
|
|
\ for just 30 minutes).\n See this [blog post](https://nubela.co/blog/why-is-the-api-returning-s3-links-for-profile-pictures-scraped-from-linkedin-profiles/)\
|
|
\ for more information."
|
|
example:
|
|
tmp_profile_pic_url: https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647&v=beta&t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU
|
|
PersonLookupUrlEnrichResult:
|
|
type: object
|
|
properties:
|
|
url:
|
|
type: string
|
|
nullable: true
|
|
description: The LinkedIn profile URL
|
|
name_similarity_score:
|
|
type: number
|
|
nullable: true
|
|
description:
|
|
A measure of how similar the input name is to the name in the
|
|
returned profile. Values can range from `0` to `1` , with `0` indicating
|
|
no similarity and `1` implying high similarity. In cases where a current
|
|
profile for comparison is not available in our dataset, the result may
|
|
be `null`.
|
|
company_similarity_score:
|
|
type: number
|
|
nullable: true
|
|
description:
|
|
A measure of how similar the input company name/domain is to
|
|
the name/domain of past or present companies in the returned profile.
|
|
The score ranges from `0` to `1` , with `0` signifying no similarity and
|
|
`1` denoting high similarity. If a relevant profile is unavailable in
|
|
our dataset for comparison, a `null` score may be returned.
|
|
title_similarity_score:
|
|
type: number
|
|
nullable: true
|
|
description:
|
|
A measure of how similar the input title is to the returned
|
|
profile's past or present titles. Scores vary from `0` to `1` , where
|
|
`0` means no similarity and `1` indicates high similarity. If a relevant
|
|
profile for comparison isn't available in our dataset, a `null` result
|
|
may occur.
|
|
location_similarity_score:
|
|
type: number
|
|
nullable: true
|
|
description:
|
|
"A measure of how similar the input location is to the returned
|
|
profile's current location. The range is from `0` to `1` , with `0` representing
|
|
no similarity and `1` signifying high similarity. If there isn't a relevant
|
|
profile in our dataset for comparison, the score might be `null`. "
|
|
profile:
|
|
$ref: '#/components/schemas/PersonEndpointResponse'
|
|
last_updated:
|
|
type: string
|
|
nullable: true
|
|
description: ISO 8601 timestamp since the enriched profile was last scraped.
|
|
example:
|
|
url: https://www.linkedin.com/in/senatormarty
|
|
name_similarity_score: 0.5
|
|
company_similarity_score: 0.5
|
|
title_similarity_score: 0.5
|
|
location_similarity_score: 0.5
|
|
profile:
|
|
public_identifier: johnrmarty
|
|
profile_pic_url: https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647&v=beta&t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI
|
|
background_cover_image_url: https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647&v=beta&t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU
|
|
first_name: John
|
|
last_name: Marty
|
|
full_name: John Marty
|
|
follower_count: null
|
|
occupation: Co-Founder at Freedom Fund Real Estate
|
|
headline: Financial Freedom through Real Estate - LinkedIn Top Voice
|
|
summary:
|
|
"Most people go through life lost, disengaged, and unhappy at work\
|
|
\ and in their lives - I'm 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's\n\nQ: Can you speak at my Company, University, event or podcast?\n\
|
|
A: I'd love to! I've 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'm a #3 (The Achiever)\n\nLETS CONNECT:\n\u2611\uFE0F Email: JohnRmarty@gmail.com\
|
|
\ (don't forget that \"R\"....The other guy gets my emails all the time)"
|
|
country: US
|
|
country_full_name: United States of America
|
|
city: Seattle
|
|
state: Washington
|
|
experiences:
|
|
- starts_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2021
|
|
ends_at: null
|
|
company: Freedom Fund Real Estate
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/freedomfund
|
|
company_facebook_profile_url: null
|
|
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.
|
|
|
|
|
|
Website: https://www.freedomfundinvestments.com/home'
|
|
location: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647&v=beta&t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2021
|
|
ends_at: null
|
|
company: Mindset Reset Podcast
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/mindset-reset-podcast
|
|
company_facebook_profile_url: null
|
|
title: Founder
|
|
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"
|
|
location: Denver, Colorado, United States
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQF9QJVQm3SOvA/company-logo_100_100/0/1614527476576?e=2147483647&v=beta&t=m3tx83nMN-E3XQFoJG0Wmch8U4qKnJ9i--5NSAfffC0
|
|
education:
|
|
- 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/
|
|
school_facebook_profile_url: null
|
|
description: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQGVi9eAHgWxFw/company-logo_100_100/0/1673448029676?e=2147483647&v=beta&t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE
|
|
grade: null
|
|
activities_and_societies: null
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at:
|
|
day: 31
|
|
month: 12
|
|
year: 2015
|
|
field_of_study: School of Software Development
|
|
degree_name: null
|
|
school: Galvanize Inc
|
|
school_linkedin_profile_url: https://www.linkedin.com/school/galvanize-it/
|
|
school_facebook_profile_url: null
|
|
description:
|
|
rails, ruby, rspec, capybara, bootstrap, css, html, api integration,
|
|
Jquery, Javascript
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQFKNxOZ4X0g8Q/company-logo_100_100/0/1670610916338?e=2147483647&v=beta&t=t7ImfhmsuIJ7HJGHEbPJ2suxdslKhzp9v-5h9_G4sWE
|
|
grade: null
|
|
activities_and_societies: null
|
|
languages:
|
|
- English
|
|
- Spanish
|
|
accomplishment_organisations:
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2012
|
|
ends_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2016
|
|
org_name: Microsoft
|
|
title: Software Developer
|
|
description: null
|
|
accomplishment_publications:
|
|
- name: Nobel Peace Prize
|
|
publisher: Acme Corp
|
|
published_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
url: https://example.com
|
|
accomplishment_honors_awards:
|
|
- title: Nobel Peace Prize
|
|
issuer: Acme Corp
|
|
issued_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
accomplishment_patents:
|
|
- title: The art of war
|
|
issuer: Acme Corp
|
|
issued_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
application_number: '123'
|
|
patent_number: '123'
|
|
url: null
|
|
accomplishment_courses:
|
|
- name: The course about ABCs
|
|
number: '123'
|
|
accomplishment_projects:
|
|
- starts_at:
|
|
day: 1
|
|
month: 3
|
|
year: 2015
|
|
ends_at: null
|
|
title: gMessenger
|
|
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's message content to the page in real time, with no page
|
|
refresh required. gMessenger also includes custom authentication with
|
|
three different permissions levels.
|
|
url: http://gmessenger.herokuapp.com/
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at: null
|
|
title: Taskly
|
|
description:
|
|
A task and project management responsive web app utilizing
|
|
Ruby on Rails - CSS and HTML
|
|
url: https://hidden-coast-7204.herokuapp.com/
|
|
accomplishment_test_scores:
|
|
- name: CS1101S
|
|
score: A
|
|
date_on:
|
|
day: 1
|
|
month: 1
|
|
year: 2010
|
|
description: Nailed it without studying.
|
|
volunteer_work:
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2012
|
|
ends_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2016
|
|
title: Surveyor
|
|
cause: To help the world
|
|
company: Microsoft
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/microsoft
|
|
description: null
|
|
logo_url: null
|
|
certifications:
|
|
- starts_at: null
|
|
ends_at: null
|
|
name:
|
|
SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean Practices
|
|
in the SAFe Enterprise)
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scaled Agile, Inc.
|
|
url: null
|
|
- starts_at: null
|
|
ends_at: null
|
|
name: SCRUM Alliance Certified Product Owner
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scrum Alliance
|
|
url: null
|
|
connections: 500
|
|
people_also_viewed:
|
|
- link: https://www.linkedin.com/in/johndoe
|
|
name: John Doe
|
|
summary: Software Engineer at Google
|
|
location: Singapore
|
|
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've 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!"
|
|
activities:
|
|
- 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
|
|
similarly_named_profiles:
|
|
- name: John Martinez
|
|
link: https://www.linkedin.com/in/john-martinez-90384a229
|
|
summary:
|
|
"Owner of Fight or Flight Medical Consultants, LLC , Owner Marty\u2019\
|
|
s Hardwood Works"
|
|
location: San Antonio, TX
|
|
- name: John Marty
|
|
link: https://www.linkedin.com/in/senatormarty
|
|
summary: null
|
|
location: St Paul, MN
|
|
articles:
|
|
- title: Manufacturing opportunity
|
|
link: https://www.linkedin.com/pulse/manufacturing-opportunity-bill-gates/
|
|
published_date:
|
|
day: 27
|
|
month: 11
|
|
year: 2019
|
|
author: Bill Gates
|
|
image_url: https://media-exp1.licdn.com/dms/image/C4E12AQFftuPi0UiqWA/article-cover_image-shrink_720_1280/0/1574801149114?e=1640822400&v=beta&t=ZAe3ERmQCM8QHGmRPS2LJ-C76GD5PR7FBHMVL4Z6iVg
|
|
groups:
|
|
- profile_pic_url: https://media-exp1.licdn.com/dms/image/C4D07AQG9IK9V0pk3mQ/group-logo_image-shrink_92x92/0/1631371531293?e=1642060800&v=beta&t=UK1tfIppWa-Nx7k9whmm5f9XdZoBdJhApf9N3ke3204
|
|
name: Hadoop Users
|
|
url: https://www.linkedin.com/groups/988957
|
|
inferred_salary:
|
|
min: 35000
|
|
max: 45000
|
|
gender: male
|
|
birth_date:
|
|
day: 1
|
|
month: 1
|
|
year: 1990
|
|
industry: government administration
|
|
extra:
|
|
github_profile_id: github-username
|
|
facebook_profile_id: facebook-username
|
|
twitter_profile_id: twitter-username
|
|
website: https://proxycurl.com
|
|
interests:
|
|
- education
|
|
- health
|
|
- human rights
|
|
personal_emails:
|
|
- abc@gmail.com
|
|
- bcd@gmail.com
|
|
- cde@@outlook.com
|
|
personal_numbers:
|
|
- '+6512345678'
|
|
- '+6285123450953'
|
|
- '+6502300340'
|
|
last_updated: '2023-10-26T11:34:30Z'
|
|
JobListEntry:
|
|
type: object
|
|
properties:
|
|
company:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The name of the company that posted this job.\n\
|
|
\ "
|
|
company_url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The LinkedIn Company Profile URL that posted this\
|
|
\ job.\n "
|
|
job_title:
|
|
type: string
|
|
nullable: true
|
|
description: "\n Job title of the posted job.\n "
|
|
job_url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n Job Profile URL. You can fetch details about this\
|
|
\ job using this URL via the [Job Profile API Endpoint](https://nubela.co/proxycurl/docs#jobs-api-job-profile-endpoint).\n\
|
|
\ "
|
|
list_date:
|
|
type: string
|
|
nullable: true
|
|
description: "\n The date that this job was listed.\n "
|
|
location:
|
|
type: string
|
|
nullable: true
|
|
description: "\n The job location.\n "
|
|
example: &id034
|
|
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
|
|
JobListPage:
|
|
type: object
|
|
properties:
|
|
job:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/JobListEntry'
|
|
next_page_no:
|
|
type: integer
|
|
nullable: true
|
|
next_page_api_url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The URL to the next page of results. This will\
|
|
\ be null for the final page.\n "
|
|
previous_page_no:
|
|
type: integer
|
|
nullable: true
|
|
previous_page_api_url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The URL to the previous page of results. This\
|
|
\ will be null for the first page.\n "
|
|
example:
|
|
job:
|
|
- *id034
|
|
- 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
|
|
next_page_no: 1
|
|
next_page_api_url: http://nubela.co/proxycurl/proxycurl/api/v2/linkedin/company/job?pagination=eyJwYWdlIjogMX0&search_id=1035
|
|
previous_page_no: null
|
|
previous_page_api_url: https://nubela.co/proxycurl/api/v2/linkedin/company/job?pagination=eyJwYWdlIjogMX0&search_id=1035
|
|
JobListCount:
|
|
type: object
|
|
properties:
|
|
count:
|
|
type: integer
|
|
example:
|
|
count: 887622
|
|
RoleSearchEnrichedResult:
|
|
type: object
|
|
properties:
|
|
linkedin_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
LinkedIn Profile URL of the person that most closely matches
|
|
the role
|
|
profile:
|
|
$ref: '#/components/schemas/PersonEndpointResponse'
|
|
last_updated:
|
|
type: string
|
|
nullable: true
|
|
description: ISO 8601 timestamp since the enriched profile was last scraped.
|
|
example:
|
|
linkedin_profile_url: https://www.linkedin.com/in/senatormarty
|
|
profile:
|
|
public_identifier: johnrmarty
|
|
profile_pic_url: https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647&v=beta&t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI
|
|
background_cover_image_url: https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647&v=beta&t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU
|
|
first_name: John
|
|
last_name: Marty
|
|
full_name: John Marty
|
|
follower_count: null
|
|
occupation: Co-Founder at Freedom Fund Real Estate
|
|
headline: Financial Freedom through Real Estate - LinkedIn Top Voice
|
|
summary:
|
|
"Most people go through life lost, disengaged, and unhappy at work\
|
|
\ and in their lives - I'm 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's\n\nQ: Can you speak at my Company, University, event or podcast?\n\
|
|
A: I'd love to! I've 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'm a #3 (The Achiever)\n\nLETS CONNECT:\n\u2611\uFE0F Email: JohnRmarty@gmail.com\
|
|
\ (don't forget that \"R\"....The other guy gets my emails all the time)"
|
|
country: US
|
|
country_full_name: United States of America
|
|
city: Seattle
|
|
state: Washington
|
|
experiences:
|
|
- starts_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2021
|
|
ends_at: null
|
|
company: Freedom Fund Real Estate
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/freedomfund
|
|
company_facebook_profile_url: null
|
|
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.
|
|
|
|
|
|
Website: https://www.freedomfundinvestments.com/home'
|
|
location: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647&v=beta&t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2021
|
|
ends_at: null
|
|
company: Mindset Reset Podcast
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/mindset-reset-podcast
|
|
company_facebook_profile_url: null
|
|
title: Founder
|
|
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"
|
|
location: Denver, Colorado, United States
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQF9QJVQm3SOvA/company-logo_100_100/0/1614527476576?e=2147483647&v=beta&t=m3tx83nMN-E3XQFoJG0Wmch8U4qKnJ9i--5NSAfffC0
|
|
education:
|
|
- 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/
|
|
school_facebook_profile_url: null
|
|
description: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQGVi9eAHgWxFw/company-logo_100_100/0/1673448029676?e=2147483647&v=beta&t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE
|
|
grade: null
|
|
activities_and_societies: null
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at:
|
|
day: 31
|
|
month: 12
|
|
year: 2015
|
|
field_of_study: School of Software Development
|
|
degree_name: null
|
|
school: Galvanize Inc
|
|
school_linkedin_profile_url: https://www.linkedin.com/school/galvanize-it/
|
|
school_facebook_profile_url: null
|
|
description:
|
|
rails, ruby, rspec, capybara, bootstrap, css, html, api integration,
|
|
Jquery, Javascript
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQFKNxOZ4X0g8Q/company-logo_100_100/0/1670610916338?e=2147483647&v=beta&t=t7ImfhmsuIJ7HJGHEbPJ2suxdslKhzp9v-5h9_G4sWE
|
|
grade: null
|
|
activities_and_societies: null
|
|
languages:
|
|
- English
|
|
- Spanish
|
|
accomplishment_organisations:
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2012
|
|
ends_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2016
|
|
org_name: Microsoft
|
|
title: Software Developer
|
|
description: null
|
|
accomplishment_publications:
|
|
- name: Nobel Peace Prize
|
|
publisher: Acme Corp
|
|
published_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
url: https://example.com
|
|
accomplishment_honors_awards:
|
|
- title: Nobel Peace Prize
|
|
issuer: Acme Corp
|
|
issued_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
accomplishment_patents:
|
|
- title: The art of war
|
|
issuer: Acme Corp
|
|
issued_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
application_number: '123'
|
|
patent_number: '123'
|
|
url: null
|
|
accomplishment_courses:
|
|
- name: The course about ABCs
|
|
number: '123'
|
|
accomplishment_projects:
|
|
- starts_at:
|
|
day: 1
|
|
month: 3
|
|
year: 2015
|
|
ends_at: null
|
|
title: gMessenger
|
|
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's message content to the page in real time, with no page
|
|
refresh required. gMessenger also includes custom authentication with
|
|
three different permissions levels.
|
|
url: http://gmessenger.herokuapp.com/
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at: null
|
|
title: Taskly
|
|
description:
|
|
A task and project management responsive web app utilizing
|
|
Ruby on Rails - CSS and HTML
|
|
url: https://hidden-coast-7204.herokuapp.com/
|
|
accomplishment_test_scores:
|
|
- name: CS1101S
|
|
score: A
|
|
date_on:
|
|
day: 1
|
|
month: 1
|
|
year: 2010
|
|
description: Nailed it without studying.
|
|
volunteer_work:
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2012
|
|
ends_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2016
|
|
title: Surveyor
|
|
cause: To help the world
|
|
company: Microsoft
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/microsoft
|
|
description: null
|
|
logo_url: null
|
|
certifications:
|
|
- starts_at: null
|
|
ends_at: null
|
|
name:
|
|
SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean Practices
|
|
in the SAFe Enterprise)
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scaled Agile, Inc.
|
|
url: null
|
|
- starts_at: null
|
|
ends_at: null
|
|
name: SCRUM Alliance Certified Product Owner
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scrum Alliance
|
|
url: null
|
|
connections: 500
|
|
people_also_viewed:
|
|
- link: https://www.linkedin.com/in/johndoe
|
|
name: John Doe
|
|
summary: Software Engineer at Google
|
|
location: Singapore
|
|
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've 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!"
|
|
activities:
|
|
- 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
|
|
similarly_named_profiles:
|
|
- name: John Martinez
|
|
link: https://www.linkedin.com/in/john-martinez-90384a229
|
|
summary:
|
|
"Owner of Fight or Flight Medical Consultants, LLC , Owner Marty\u2019\
|
|
s Hardwood Works"
|
|
location: San Antonio, TX
|
|
- name: John Marty
|
|
link: https://www.linkedin.com/in/senatormarty
|
|
summary: null
|
|
location: St Paul, MN
|
|
articles:
|
|
- title: Manufacturing opportunity
|
|
link: https://www.linkedin.com/pulse/manufacturing-opportunity-bill-gates/
|
|
published_date:
|
|
day: 27
|
|
month: 11
|
|
year: 2019
|
|
author: Bill Gates
|
|
image_url: https://media-exp1.licdn.com/dms/image/C4E12AQFftuPi0UiqWA/article-cover_image-shrink_720_1280/0/1574801149114?e=1640822400&v=beta&t=ZAe3ERmQCM8QHGmRPS2LJ-C76GD5PR7FBHMVL4Z6iVg
|
|
groups:
|
|
- profile_pic_url: https://media-exp1.licdn.com/dms/image/C4D07AQG9IK9V0pk3mQ/group-logo_image-shrink_92x92/0/1631371531293?e=1642060800&v=beta&t=UK1tfIppWa-Nx7k9whmm5f9XdZoBdJhApf9N3ke3204
|
|
name: Hadoop Users
|
|
url: https://www.linkedin.com/groups/988957
|
|
inferred_salary:
|
|
min: 35000
|
|
max: 45000
|
|
gender: male
|
|
birth_date:
|
|
day: 1
|
|
month: 1
|
|
year: 1990
|
|
industry: government administration
|
|
extra:
|
|
github_profile_id: github-username
|
|
facebook_profile_id: facebook-username
|
|
twitter_profile_id: twitter-username
|
|
website: https://proxycurl.com
|
|
interests:
|
|
- education
|
|
- health
|
|
- human rights
|
|
personal_emails:
|
|
- abc@gmail.com
|
|
- bcd@gmail.com
|
|
- cde@@outlook.com
|
|
personal_numbers:
|
|
- '+6512345678'
|
|
- '+6285123450953'
|
|
- '+6502300340'
|
|
last_updated: '2023-10-26T11:34:30Z'
|
|
CompanyUrlEnrichResult:
|
|
type: object
|
|
properties:
|
|
url:
|
|
type: string
|
|
nullable: true
|
|
description: The LinkedIn profile URL
|
|
profile:
|
|
$ref: '#/components/schemas/LinkedinCompany'
|
|
last_updated:
|
|
type: string
|
|
nullable: true
|
|
description: ISO 8601 timestamp since the enriched profile was last scraped.
|
|
example:
|
|
url: https://www.linkedin.com/company/accenture
|
|
profile:
|
|
linkedin_internal_id: '1033'
|
|
description:
|
|
"Accenture is a global professional services company with leading\
|
|
\ capabilities in digital, cloud, and security. Combining unmatched experience\
|
|
\ and specialized skills across more than 40 industries, we offer Strategy\
|
|
\ and Consulting, Technology and Operations Services, and Accenture Song\u2014\
|
|
all powered by the world\u2019s largest network of Advanced Technology\
|
|
\ and Intelligent Operations centers. \n\nOur people deliver on the promise\
|
|
\ of technology and human ingenuity every day, serving clients in more\
|
|
\ than 120 countries. We embrace the power of change to create value and\
|
|
\ shared success for our clients, people, shareholders, partners, and\
|
|
\ communities. \n\nVisit us at accenture.com."
|
|
website: http://www.accenture.com
|
|
industry: Business Consulting and Services
|
|
company_size:
|
|
- 10001
|
|
- null
|
|
company_size_on_linkedin: 541251
|
|
hq:
|
|
country: IE
|
|
city: Dublin 2
|
|
postal_code: null
|
|
line_1: Grand Canal Harbour
|
|
is_hq: true
|
|
state: null
|
|
company_type: PUBLIC_COMPANY
|
|
founded_year: null
|
|
specialities:
|
|
- Management Consulting
|
|
- Systems Integration and Technology
|
|
locations:
|
|
- country: IE
|
|
city: Dublin 2
|
|
postal_code: null
|
|
line_1: Grand Canal Harbour
|
|
is_hq: true
|
|
state: null
|
|
- country: US
|
|
city: San Francisco
|
|
postal_code: '94105'
|
|
line_1: 415 Mission Street Floor 31-34
|
|
is_hq: null
|
|
state: California
|
|
name: Accenture
|
|
tagline: Think Different - But Not Too Different
|
|
universal_name_id: accenture
|
|
profile_pic_url: https://media.licdn.com/dms/image/D4E0BAQGTUswcRlgg9A/company-logo_200_200/0/1689352303421/accenture_logo?e=2147483647&v=beta&t=cjQy2p9bf0c2mJqCNVzaiLqdByE0zboCX3vY5m4gRuY
|
|
background_cover_image_url: https://media.licdn.com/dms/image/D4E3DAQEJ2lIxxNO81Q/image-scale_191_1128/0/1689359170613/accenture_cover?e=1698901200&v=beta&t=8ygpwsa5GjMoubooCGg1MqfGomnBaU9WHwnI3_Ek0_0
|
|
search_id: '1033'
|
|
similar_companies:
|
|
- name: Deloitte
|
|
link: https://www.linkedin.com/company/deloitte
|
|
industry: Business Consulting and Services
|
|
location: null
|
|
- name: Tata Consultancy Services
|
|
link: https://in.linkedin.com/company/tata-consultancy-services
|
|
industry: IT Services and IT Consulting
|
|
location: Mumbai, Maharashtra
|
|
affiliated_companies:
|
|
- name: Accenture in India
|
|
link: https://in.linkedin.com/company/accentureindia
|
|
industry: IT Services and IT Consulting
|
|
location: Bengaluru, Karnatka
|
|
- name: Accenture Brasil
|
|
link: https://br.linkedin.com/company/accenturebrasil
|
|
industry: IT Services and IT Consulting
|
|
location: "S\xE3o Paulo, S\xE3o Paulo"
|
|
updates:
|
|
- article_link: null
|
|
image: null
|
|
posted_on:
|
|
day: 25
|
|
month: 10
|
|
year: 2023
|
|
text: 'Explore #AccentureLifeTrends 2024 to learn more: https://accntu.re/3MfdMg4'
|
|
total_likes: 325
|
|
- article_link: null
|
|
image: https://media.licdn.com/dms/image/D5610AQEMoO_uNVz5BQ/ads-video-thumbnail_720_1280/0/1698154984087?e=1698901200&v=beta&t=WTxhLNSbSM-UBnFIcqYX4bdVhVUD6OoOoffR0xQnlDA
|
|
posted_on:
|
|
day: 25
|
|
month: 10
|
|
year: 2023
|
|
text:
|
|
"The ability to learn new things, without forgetting those that\
|
|
\ came before, is a huge differentiator between the #AI we're familiar\
|
|
\ with, and the #GenerativeAI powered by foundation models that we're\
|
|
\ seeing now.\n \nDiscover the trends shaping the next decade: https://accntu.re/474YxOH\n\
|
|
\ \n#TechVision2023"
|
|
total_likes: 541
|
|
follower_count: 11125167
|
|
acquisitions:
|
|
acquired:
|
|
- linkedin_profile_url: https://www.linkedin.com/company/apple
|
|
crunchbase_profile_url: https://www.crunchbase.com/organization/apple
|
|
announced_date:
|
|
day: 1
|
|
month: 4
|
|
year: 1976
|
|
price: 300000000
|
|
acquired_by:
|
|
linkedin_profile_url: https://www.linkedin.com/company/nvidia
|
|
crunchbase_profile_url: https://www.crunchbase.com/organization/nvidia
|
|
announced_date:
|
|
day: 6
|
|
month: 3
|
|
year: 2020
|
|
price: 10000
|
|
exit_data:
|
|
- linkedin_profile_url: https://www.linkedin.com/company/motiondsp
|
|
crunchbase_profile_url: https://www.crunchbase.com/organization/motiondsp
|
|
name: MotionDSP
|
|
extra:
|
|
crunchbase_profile_url: https://www.crunchbase.com/organization/nvidia
|
|
ipo_status: Public
|
|
crunchbase_rank: 13
|
|
founding_date:
|
|
day: 1
|
|
month: 1
|
|
year: 2000
|
|
operating_status: Active
|
|
company_type: For Profit
|
|
contact_email: info@nvidia.com
|
|
phone_number: (140) 848-6200
|
|
facebook_id: NVIDIA.IN
|
|
twitter_id: nvidia
|
|
number_of_funding_rounds: 3
|
|
total_funding_amount: 4000000
|
|
stock_symbol: NASDAQ:NVDA
|
|
ipo_date:
|
|
day: 1
|
|
month: 1
|
|
year: 2000
|
|
number_of_lead_investors: 3
|
|
number_of_investors: 4
|
|
total_fund_raised: 1000
|
|
number_of_investments: 50
|
|
number_of_lead_investments: 3
|
|
number_of_exits: 7
|
|
number_of_acquisitions: 2
|
|
funding_data:
|
|
- funding_type: Grant
|
|
money_raised: 25000000
|
|
announced_date:
|
|
day: 1
|
|
month: 1
|
|
year: 2001
|
|
number_of_investor: 1
|
|
investor_list:
|
|
- linkedin_profile_url: https://linkedin.com/company/darpa
|
|
name: DARPA
|
|
type: organization
|
|
categories:
|
|
- artificial-intelligence
|
|
- virtual-reality
|
|
last_updated: '2023-10-26T11:33:24Z'
|
|
Student:
|
|
type: object
|
|
properties:
|
|
profile_url:
|
|
type: string
|
|
profile:
|
|
$ref: '#/components/schemas/PublicPerson'
|
|
nullable: true
|
|
last_updated:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n ISO 8601 timestamp since the enriched profile\
|
|
\ was last scraped.\n "
|
|
example: &id035
|
|
profile_url: https://www.linkedin.com/in/johnrmarty
|
|
profile:
|
|
public_identifier: johnrmarty
|
|
profile_pic_url: https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647&v=beta&t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI
|
|
background_cover_image_url: https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647&v=beta&t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU
|
|
first_name: John
|
|
last_name: Marty
|
|
full_name: John Marty
|
|
follower_count: null
|
|
occupation: Co-Founder at Freedom Fund Real Estate
|
|
headline: Financial Freedom through Real Estate - LinkedIn Top Voice
|
|
summary:
|
|
"Most people go through life lost, disengaged, and unhappy at work\
|
|
\ and in their lives - I'm 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's\n\nQ: Can you speak at my Company, University, event or podcast?\n\
|
|
A: I'd love to! I've 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'm a #3 (The Achiever)\n\nLETS CONNECT:\n\u2611\uFE0F Email: JohnRmarty@gmail.com\
|
|
\ (don't forget that \"R\"....The other guy gets my emails all the time)"
|
|
country: US
|
|
country_full_name: United States of America
|
|
city: Seattle
|
|
state: Washington
|
|
experiences:
|
|
- starts_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2021
|
|
ends_at: null
|
|
company: Freedom Fund Real Estate
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/freedomfund
|
|
company_facebook_profile_url: null
|
|
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.
|
|
|
|
|
|
Website: https://www.freedomfundinvestments.com/home'
|
|
location: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647&v=beta&t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2021
|
|
ends_at: null
|
|
company: Mindset Reset Podcast
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/mindset-reset-podcast
|
|
company_facebook_profile_url: null
|
|
title: Founder
|
|
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"
|
|
location: Denver, Colorado, United States
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQF9QJVQm3SOvA/company-logo_100_100/0/1614527476576?e=2147483647&v=beta&t=m3tx83nMN-E3XQFoJG0Wmch8U4qKnJ9i--5NSAfffC0
|
|
education:
|
|
- 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/
|
|
school_facebook_profile_url: null
|
|
description: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQGVi9eAHgWxFw/company-logo_100_100/0/1673448029676?e=2147483647&v=beta&t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE
|
|
grade: null
|
|
activities_and_societies: null
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at:
|
|
day: 31
|
|
month: 12
|
|
year: 2015
|
|
field_of_study: School of Software Development
|
|
degree_name: null
|
|
school: Galvanize Inc
|
|
school_linkedin_profile_url: https://www.linkedin.com/school/galvanize-it/
|
|
school_facebook_profile_url: null
|
|
description:
|
|
rails, ruby, rspec, capybara, bootstrap, css, html, api integration,
|
|
Jquery, Javascript
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQFKNxOZ4X0g8Q/company-logo_100_100/0/1670610916338?e=2147483647&v=beta&t=t7ImfhmsuIJ7HJGHEbPJ2suxdslKhzp9v-5h9_G4sWE
|
|
grade: null
|
|
activities_and_societies: null
|
|
languages:
|
|
- English
|
|
- Spanish
|
|
accomplishment_organisations:
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2012
|
|
ends_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2016
|
|
org_name: Microsoft
|
|
title: Software Developer
|
|
description: null
|
|
accomplishment_publications:
|
|
- name: Nobel Peace Prize
|
|
publisher: Acme Corp
|
|
published_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
url: https://example.com
|
|
accomplishment_honors_awards:
|
|
- title: Nobel Peace Prize
|
|
issuer: Acme Corp
|
|
issued_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
accomplishment_patents:
|
|
- title: The art of war
|
|
issuer: Acme Corp
|
|
issued_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
application_number: '123'
|
|
patent_number: '123'
|
|
url: null
|
|
accomplishment_courses:
|
|
- name: The course about ABCs
|
|
number: '123'
|
|
accomplishment_projects:
|
|
- starts_at:
|
|
day: 1
|
|
month: 3
|
|
year: 2015
|
|
ends_at: null
|
|
title: gMessenger
|
|
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's message content to the page in real time, with no page
|
|
refresh required. gMessenger also includes custom authentication with
|
|
three different permissions levels.
|
|
url: http://gmessenger.herokuapp.com/
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at: null
|
|
title: Taskly
|
|
description:
|
|
A task and project management responsive web app utilizing
|
|
Ruby on Rails - CSS and HTML
|
|
url: https://hidden-coast-7204.herokuapp.com/
|
|
accomplishment_test_scores:
|
|
- name: CS1101S
|
|
score: A
|
|
date_on:
|
|
day: 1
|
|
month: 1
|
|
year: 2010
|
|
description: Nailed it without studying.
|
|
volunteer_work:
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2012
|
|
ends_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2016
|
|
title: Surveyor
|
|
cause: To help the world
|
|
company: Microsoft
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/microsoft
|
|
description: null
|
|
logo_url: null
|
|
certifications:
|
|
- starts_at: null
|
|
ends_at: null
|
|
name:
|
|
SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean Practices
|
|
in the SAFe Enterprise)
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scaled Agile, Inc.
|
|
url: null
|
|
- starts_at: null
|
|
ends_at: null
|
|
name: SCRUM Alliance Certified Product Owner
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scrum Alliance
|
|
url: null
|
|
connections: 500
|
|
people_also_viewed:
|
|
- link: https://www.linkedin.com/in/johndoe
|
|
name: John Doe
|
|
summary: Software Engineer at Google
|
|
location: Singapore
|
|
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've 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!"
|
|
activities:
|
|
- 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
|
|
similarly_named_profiles:
|
|
- name: John Martinez
|
|
link: https://www.linkedin.com/in/john-martinez-90384a229
|
|
summary:
|
|
"Owner of Fight or Flight Medical Consultants, LLC , Owner Marty\u2019\
|
|
s Hardwood Works"
|
|
location: San Antonio, TX
|
|
- name: John Marty
|
|
link: https://www.linkedin.com/in/senatormarty
|
|
summary: null
|
|
location: St Paul, MN
|
|
articles:
|
|
- title: Manufacturing opportunity
|
|
link: https://www.linkedin.com/pulse/manufacturing-opportunity-bill-gates/
|
|
published_date:
|
|
day: 27
|
|
month: 11
|
|
year: 2019
|
|
author: Bill Gates
|
|
image_url: https://media-exp1.licdn.com/dms/image/C4E12AQFftuPi0UiqWA/article-cover_image-shrink_720_1280/0/1574801149114?e=1640822400&v=beta&t=ZAe3ERmQCM8QHGmRPS2LJ-C76GD5PR7FBHMVL4Z6iVg
|
|
groups:
|
|
- profile_pic_url: https://media-exp1.licdn.com/dms/image/C4D07AQG9IK9V0pk3mQ/group-logo_image-shrink_92x92/0/1631371531293?e=1642060800&v=beta&t=UK1tfIppWa-Nx7k9whmm5f9XdZoBdJhApf9N3ke3204
|
|
name: Hadoop Users
|
|
url: https://www.linkedin.com/groups/988957
|
|
last_updated: '2023-10-26T11:34:30Z'
|
|
StudentList:
|
|
type: object
|
|
properties:
|
|
students:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Student'
|
|
description:
|
|
"\n A list of student profiles (if enriched) and their\
|
|
\ associated profile URL.\n "
|
|
next_page:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The API URI that will lead to the next page of results.\
|
|
\ This will be null for the final page.\n "
|
|
example:
|
|
students:
|
|
- *id035
|
|
next_page: null
|
|
ReverseEmailUrlEnrichResult:
|
|
type: object
|
|
properties:
|
|
linkedin_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
Returns the closest match of the LinkedIn profile that belongs
|
|
to this email address.
|
|
twitter_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
Returns the Twitter Profile URL that belongs to this email
|
|
address.
|
|
facebook_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
Returns the Facebook Profile URL that belongs to this email
|
|
address.
|
|
url:
|
|
type: string
|
|
nullable: true
|
|
similarity_score:
|
|
type: number
|
|
nullable: true
|
|
description:
|
|
This metric quantifies the degree of resemblance between the
|
|
queried profile and the retrieved one. Scores range from `0` (no similarity)
|
|
to `1` (high similarity). In the event that our dataset lacks a pertinent
|
|
profile for comparison, the assigned score might be `null`.
|
|
backwards_compatibility_notes:
|
|
type: string
|
|
nullable: true
|
|
profile:
|
|
$ref: '#/components/schemas/PersonEndpointResponse'
|
|
nullable: true
|
|
last_updated:
|
|
type: string
|
|
nullable: true
|
|
description: ISO 8601 timestamp since the enriched profile was last scraped.
|
|
example:
|
|
linkedin_profile_url: https://www.linkedin.com/in/senatormarty
|
|
twitter_profile_url: https://www.twitter.com/proxycurl
|
|
facebook_profile_url: https://www.facebook.com/zuck
|
|
similarity_score: 0.82
|
|
profile:
|
|
public_identifier: johnrmarty
|
|
profile_pic_url: https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647&v=beta&t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI
|
|
background_cover_image_url: https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647&v=beta&t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU
|
|
first_name: John
|
|
last_name: Marty
|
|
full_name: John Marty
|
|
follower_count: null
|
|
occupation: Co-Founder at Freedom Fund Real Estate
|
|
headline: Financial Freedom through Real Estate - LinkedIn Top Voice
|
|
summary:
|
|
"Most people go through life lost, disengaged, and unhappy at work\
|
|
\ and in their lives - I'm 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's\n\nQ: Can you speak at my Company, University, event or podcast?\n\
|
|
A: I'd love to! I've 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'm a #3 (The Achiever)\n\nLETS CONNECT:\n\u2611\uFE0F Email: JohnRmarty@gmail.com\
|
|
\ (don't forget that \"R\"....The other guy gets my emails all the time)"
|
|
country: US
|
|
country_full_name: United States of America
|
|
city: Seattle
|
|
state: Washington
|
|
experiences:
|
|
- starts_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2021
|
|
ends_at: null
|
|
company: Freedom Fund Real Estate
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/freedomfund
|
|
company_facebook_profile_url: null
|
|
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.
|
|
|
|
|
|
Website: https://www.freedomfundinvestments.com/home'
|
|
location: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647&v=beta&t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2021
|
|
ends_at: null
|
|
company: Mindset Reset Podcast
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/mindset-reset-podcast
|
|
company_facebook_profile_url: null
|
|
title: Founder
|
|
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"
|
|
location: Denver, Colorado, United States
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQF9QJVQm3SOvA/company-logo_100_100/0/1614527476576?e=2147483647&v=beta&t=m3tx83nMN-E3XQFoJG0Wmch8U4qKnJ9i--5NSAfffC0
|
|
education:
|
|
- 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/
|
|
school_facebook_profile_url: null
|
|
description: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQGVi9eAHgWxFw/company-logo_100_100/0/1673448029676?e=2147483647&v=beta&t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE
|
|
grade: null
|
|
activities_and_societies: null
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at:
|
|
day: 31
|
|
month: 12
|
|
year: 2015
|
|
field_of_study: School of Software Development
|
|
degree_name: null
|
|
school: Galvanize Inc
|
|
school_linkedin_profile_url: https://www.linkedin.com/school/galvanize-it/
|
|
school_facebook_profile_url: null
|
|
description:
|
|
rails, ruby, rspec, capybara, bootstrap, css, html, api integration,
|
|
Jquery, Javascript
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQFKNxOZ4X0g8Q/company-logo_100_100/0/1670610916338?e=2147483647&v=beta&t=t7ImfhmsuIJ7HJGHEbPJ2suxdslKhzp9v-5h9_G4sWE
|
|
grade: null
|
|
activities_and_societies: null
|
|
languages:
|
|
- English
|
|
- Spanish
|
|
accomplishment_organisations:
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2012
|
|
ends_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2016
|
|
org_name: Microsoft
|
|
title: Software Developer
|
|
description: null
|
|
accomplishment_publications:
|
|
- name: Nobel Peace Prize
|
|
publisher: Acme Corp
|
|
published_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
url: https://example.com
|
|
accomplishment_honors_awards:
|
|
- title: Nobel Peace Prize
|
|
issuer: Acme Corp
|
|
issued_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
accomplishment_patents:
|
|
- title: The art of war
|
|
issuer: Acme Corp
|
|
issued_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
application_number: '123'
|
|
patent_number: '123'
|
|
url: null
|
|
accomplishment_courses:
|
|
- name: The course about ABCs
|
|
number: '123'
|
|
accomplishment_projects:
|
|
- starts_at:
|
|
day: 1
|
|
month: 3
|
|
year: 2015
|
|
ends_at: null
|
|
title: gMessenger
|
|
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's message content to the page in real time, with no page
|
|
refresh required. gMessenger also includes custom authentication with
|
|
three different permissions levels.
|
|
url: http://gmessenger.herokuapp.com/
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at: null
|
|
title: Taskly
|
|
description:
|
|
A task and project management responsive web app utilizing
|
|
Ruby on Rails - CSS and HTML
|
|
url: https://hidden-coast-7204.herokuapp.com/
|
|
accomplishment_test_scores:
|
|
- name: CS1101S
|
|
score: A
|
|
date_on:
|
|
day: 1
|
|
month: 1
|
|
year: 2010
|
|
description: Nailed it without studying.
|
|
volunteer_work:
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2012
|
|
ends_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2016
|
|
title: Surveyor
|
|
cause: To help the world
|
|
company: Microsoft
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/microsoft
|
|
description: null
|
|
logo_url: null
|
|
certifications:
|
|
- starts_at: null
|
|
ends_at: null
|
|
name:
|
|
SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean Practices
|
|
in the SAFe Enterprise)
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scaled Agile, Inc.
|
|
url: null
|
|
- starts_at: null
|
|
ends_at: null
|
|
name: SCRUM Alliance Certified Product Owner
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scrum Alliance
|
|
url: null
|
|
connections: 500
|
|
people_also_viewed:
|
|
- link: https://www.linkedin.com/in/johndoe
|
|
name: John Doe
|
|
summary: Software Engineer at Google
|
|
location: Singapore
|
|
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've 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!"
|
|
activities:
|
|
- 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
|
|
similarly_named_profiles:
|
|
- name: John Martinez
|
|
link: https://www.linkedin.com/in/john-martinez-90384a229
|
|
summary:
|
|
"Owner of Fight or Flight Medical Consultants, LLC , Owner Marty\u2019\
|
|
s Hardwood Works"
|
|
location: San Antonio, TX
|
|
- name: John Marty
|
|
link: https://www.linkedin.com/in/senatormarty
|
|
summary: null
|
|
location: St Paul, MN
|
|
articles:
|
|
- title: Manufacturing opportunity
|
|
link: https://www.linkedin.com/pulse/manufacturing-opportunity-bill-gates/
|
|
published_date:
|
|
day: 27
|
|
month: 11
|
|
year: 2019
|
|
author: Bill Gates
|
|
image_url: https://media-exp1.licdn.com/dms/image/C4E12AQFftuPi0UiqWA/article-cover_image-shrink_720_1280/0/1574801149114?e=1640822400&v=beta&t=ZAe3ERmQCM8QHGmRPS2LJ-C76GD5PR7FBHMVL4Z6iVg
|
|
groups:
|
|
- profile_pic_url: https://media-exp1.licdn.com/dms/image/C4D07AQG9IK9V0pk3mQ/group-logo_image-shrink_92x92/0/1631371531293?e=1642060800&v=beta&t=UK1tfIppWa-Nx7k9whmm5f9XdZoBdJhApf9N3ke3204
|
|
name: Hadoop Users
|
|
url: https://www.linkedin.com/groups/988957
|
|
inferred_salary:
|
|
min: 35000
|
|
max: 45000
|
|
gender: male
|
|
birth_date:
|
|
day: 1
|
|
month: 1
|
|
year: 1990
|
|
industry: government administration
|
|
extra:
|
|
github_profile_id: github-username
|
|
facebook_profile_id: facebook-username
|
|
twitter_profile_id: twitter-username
|
|
website: https://proxycurl.com
|
|
interests:
|
|
- education
|
|
- health
|
|
- human rights
|
|
personal_emails:
|
|
- abc@gmail.com
|
|
- bcd@gmail.com
|
|
- cde@@outlook.com
|
|
personal_numbers:
|
|
- '+6512345678'
|
|
- '+6285123450953'
|
|
- '+6502300340'
|
|
last_updated: '2023-10-26T11:34:30Z'
|
|
ReverseContactNumberResult:
|
|
type: object
|
|
properties:
|
|
linkedin_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
Returns the closest match of the LinkedIn profile that belongs
|
|
to this phone number.
|
|
twitter_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
Returns the Twitter Profile URL that belongs to this phone
|
|
number.
|
|
facebook_profile_url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
Returns the Facebook Profile URL that belongs to this phone
|
|
number.
|
|
example:
|
|
linkedin_profile_url: https://www.linkedin.com/in/senatormarty
|
|
twitter_profile_url: https://www.twitter.com/proxycurl
|
|
facebook_profile_url: https://www.facebook.com/zuck
|
|
ExtractionEmailResult:
|
|
type: object
|
|
properties:
|
|
email_queue_count:
|
|
type: integer
|
|
description: Total queue in the email extraction process
|
|
example:
|
|
email_queue_count: null
|
|
JobLocation:
|
|
type: object
|
|
properties:
|
|
country:
|
|
type: string
|
|
nullable: true
|
|
description: "\n Full country name.\n "
|
|
region:
|
|
type: string
|
|
nullable: true
|
|
description: "\n Region.\n "
|
|
city:
|
|
type: string
|
|
nullable: true
|
|
description: "\n The city for the job.\n "
|
|
postal_code:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n Postal code of the business location for the job.\n\
|
|
\ "
|
|
latitude:
|
|
type: number
|
|
nullable: true
|
|
description:
|
|
"\n Latitude coordinates of the business location for\
|
|
\ the job.\n "
|
|
longitude:
|
|
type: number
|
|
nullable: true
|
|
description:
|
|
"\n Longitude coordinates of the business location for\
|
|
\ the job.\n "
|
|
street:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n Street address of the business location for the\
|
|
\ job.\n "
|
|
example: &id036
|
|
country: United States
|
|
region: Hawaii
|
|
city: null
|
|
postal_code: null
|
|
latitude: null
|
|
longitude: null
|
|
street: null
|
|
JobCompany:
|
|
type: object
|
|
properties:
|
|
name:
|
|
type: string
|
|
nullable: true
|
|
description: "\n The name of the company.\n "
|
|
url:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The LinkedIn Company Profile URL of the job posting\
|
|
\ company.\n "
|
|
logo:
|
|
type: string
|
|
nullable: true
|
|
description: "\n The URL to the logo of this company.\n "
|
|
example: &id037
|
|
name: Microsoft
|
|
url: https://www.linkedin.com/company/microsoft
|
|
logo: https://media.licdn.com/dms/image/C560BAQE88xCsONDULQ/company-logo_100_100/0/1618231291419?e=2147483647&v=beta&t=rffql7GLHsSqWXKbdP2LJMMv7CMTqu7-Ms9d9tophKI
|
|
JobProfile:
|
|
type: object
|
|
properties:
|
|
linkedin_internal_id:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The internal ID representation of this job that\
|
|
\ LinkedIn has for this job.\n "
|
|
job_description:
|
|
type: string
|
|
nullable: true
|
|
description: "\n Description of the posted job.\n "
|
|
apply_url:
|
|
type: string
|
|
nullable: true
|
|
description: "\n The URL to apply for this job.\n "
|
|
title:
|
|
type: string
|
|
nullable: true
|
|
description: "\n Title of the posted job.\n "
|
|
location:
|
|
$ref: '#/components/schemas/JobLocation'
|
|
company:
|
|
$ref: '#/components/schemas/JobCompany'
|
|
seniority_level:
|
|
type: string
|
|
nullable: true
|
|
description: "\n The seniority level for this role.\n "
|
|
industry:
|
|
type: array
|
|
items:
|
|
type: string
|
|
description:
|
|
"\n A list of industries that the company which posted\
|
|
\ this job lies in.\n "
|
|
employment_type:
|
|
type: string
|
|
nullable: true
|
|
description: "\n Type of employment.\n "
|
|
job_functions:
|
|
type: array
|
|
items:
|
|
type: string
|
|
description:
|
|
"\n A list of job functions that this role is expected\
|
|
\ to cover.\n "
|
|
total_applicants:
|
|
type: integer
|
|
nullable: true
|
|
description: "\n Total applicants for this job so far.\n "
|
|
example:
|
|
linkedin_internal_id: content-strategist-at-microsoft-3257696537
|
|
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\u2014\
|
|
where 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's 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's 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\n\
|
|
Narrative \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 & 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: 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&urlHash=I9BQ&trk=public_jobs_apply-link-offsite
|
|
title: Content Strategist
|
|
location: *id036
|
|
company: *id037
|
|
seniority_level: Mid-Senior level
|
|
industry:
|
|
- IT Services and IT Consulting, Computer Hardware Manufacturing, and Software
|
|
Development
|
|
employment_type: Full-time
|
|
job_functions:
|
|
- Marketing
|
|
total_applicants: 200
|
|
Follower:
|
|
type: object
|
|
properties:
|
|
linkedin_profile_url:
|
|
type: string
|
|
nullable: true
|
|
twitter_profile_url:
|
|
type: string
|
|
email:
|
|
type: string
|
|
nullable: true
|
|
example: &id038
|
|
linkedin_profile_url: https://www.linkedin.com/in/agiliosoftware
|
|
twitter_profile_url: https://www.x.com/agilio_software
|
|
email: null
|
|
FollowerList:
|
|
type: object
|
|
properties:
|
|
followers:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Follower'
|
|
description:
|
|
"\n A list of individual followers of a company.\n \
|
|
\ "
|
|
next_page:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The API URI that will lead to the next page of results.\
|
|
\ This will be null for the final page.\n "
|
|
example:
|
|
followers:
|
|
- *id038
|
|
- linkedin_profile_url: https://www.linkedin.com/in/air-techniques
|
|
twitter_profile_url: https://www.x.com/airtechniques
|
|
email: null
|
|
next_page: null
|
|
FollowerListCount:
|
|
type: object
|
|
properties:
|
|
follower_count:
|
|
type: integer
|
|
description: A count of all individuals that are probable customers or followers.
|
|
example:
|
|
follower_count: 74
|
|
CSearchResult:
|
|
type: object
|
|
properties:
|
|
linkedin_profile_url:
|
|
type: string
|
|
description:
|
|
"\n The LinkedIn Profile URL of the company\n \
|
|
\ "
|
|
profile:
|
|
$ref: '#/components/schemas/LinkedinCompany'
|
|
nullable: true
|
|
description:
|
|
"\n If `enrich_profiles=enrich` is specified, the company's\
|
|
\ entire profile\n is returned. Otherwise this field will return\
|
|
\ `null`.\n "
|
|
last_updated:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n ISO 8601 timestamp since the enriched profile was\
|
|
\ last scraped.\n "
|
|
example: &id039
|
|
linkedin_profile_url: https://www.linkedin.com/company/apple/
|
|
profile:
|
|
linkedin_internal_id: '1441'
|
|
description: "A problem isn't truly solved until it's 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.
|
|
|
|
|
|
Check out our career opportunities at careers.google.com."
|
|
website: https://goo.gle/3m1IN7m
|
|
industry: Software Development
|
|
company_size:
|
|
- 10001
|
|
- null
|
|
company_size_on_linkedin: 319856
|
|
hq:
|
|
country: US
|
|
city: Mountain View
|
|
postal_code: '94043'
|
|
line_1: 1600 Amphitheatre Parkway
|
|
is_hq: true
|
|
state: CA
|
|
company_type: PUBLIC_COMPANY
|
|
founded_year: null
|
|
specialities:
|
|
- search
|
|
- ads
|
|
locations:
|
|
- country: US
|
|
city: Mountain View
|
|
postal_code: '94043'
|
|
line_1: 1600 Amphitheatre Parkway
|
|
is_hq: true
|
|
state: CA
|
|
- country: US
|
|
city: New York
|
|
postal_code: '10011'
|
|
line_1: 111 8th Ave
|
|
is_hq: null
|
|
state: NY
|
|
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&X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20230119T060024Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=0d3500b39da8db1d2d8f5727a9ac39a7c4a88b4632ed68209dee12f06bc79aca
|
|
background_cover_image_url: https://s3.us-west-000.backblazeb2.com/proxycurl/company/google/cover?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=0004d7f56a0400b0000000001%2F20230119%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20230119T060024Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=abb7a4b87583cffda8db24d58d906c644998fae8cbb99e98c69a35720fcd0050
|
|
search_id: '1441'
|
|
similar_companies:
|
|
- name: Amazon
|
|
link: https://www.linkedin.com/company/amazon
|
|
industry: Software Development
|
|
location: Seattle, WA
|
|
- name: Microsoft
|
|
link: https://www.linkedin.com/company/microsoft
|
|
industry: Software Development
|
|
location: Redmond, Washington
|
|
affiliated_companies:
|
|
- name: YouTube
|
|
link: https://www.linkedin.com/company/youtube
|
|
industry: Software Development
|
|
location: San Bruno, CA
|
|
- name: Google Cloud
|
|
link: https://www.linkedin.com/showcase/google-cloud
|
|
industry: Software Development
|
|
location: Mountain View, California
|
|
updates:
|
|
- article_link: null
|
|
image: https://media.licdn.com/dms/image/C5605AQFthnjiTD6Mvg/videocover-high/0/1660754102856?e=2147483647&v=beta&t=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&v=beta&t=whRRx9ULPEuyw_FgUg4Z3N3O9iksyJW7ewCGZA6ujdg
|
|
posted_on: null
|
|
text:
|
|
"Ariana, welcome to Google. Here\u2019s to a year full of growth,\
|
|
\ learning, and experiences at #LifeAtGoogle! \U0001F389"
|
|
total_likes: 397
|
|
follower_count: 27472792
|
|
acquisitions:
|
|
acquired:
|
|
- linkedin_profile_url: https://www.linkedin.com/company/apple
|
|
crunchbase_profile_url: https://www.crunchbase.com/organization/apple
|
|
announced_date:
|
|
day: 1
|
|
month: 4
|
|
year: 1976
|
|
price: 300000000
|
|
acquired_by:
|
|
linkedin_profile_url: https://www.linkedin.com/company/nvidia
|
|
crunchbase_profile_url: https://www.crunchbase.com/organization/nvidia
|
|
announced_date:
|
|
day: 6
|
|
month: 3
|
|
year: 2020
|
|
price: 10000
|
|
exit_data:
|
|
- linkedin_profile_url: https://www.linkedin.com/company/motiondsp
|
|
crunchbase_profile_url: https://www.crunchbase.com/organization/motiondsp
|
|
name: MotionDSP
|
|
extra:
|
|
crunchbase_profile_url: https://www.crunchbase.com/organization/nvidia
|
|
ipo_status: Public
|
|
crunchbase_rank: 13
|
|
founding_date:
|
|
day: 1
|
|
month: 1
|
|
year: 2000
|
|
operating_status: Active
|
|
company_type: For Profit
|
|
contact_email: info@nvidia.com
|
|
phone_number: (140) 848-6200
|
|
facebook_id: NVIDIA.IN
|
|
twitter_id: nvidia
|
|
number_of_funding_rounds: 3
|
|
total_funding_amount: 4000000
|
|
stock_symbol: NASDAQ:NVDA
|
|
ipo_date:
|
|
day: 1
|
|
month: 1
|
|
year: 2000
|
|
number_of_lead_investors: 3
|
|
number_of_investors: 4
|
|
total_fund_raised: 1000
|
|
number_of_investments: 50
|
|
number_of_lead_investments: 3
|
|
number_of_exits: 7
|
|
number_of_acquisitions: 2
|
|
funding_data:
|
|
- funding_type: Grant
|
|
money_raised: 25000000
|
|
announced_date:
|
|
day: 1
|
|
month: 1
|
|
year: 2001
|
|
number_of_investor: 1
|
|
investor_list:
|
|
- linkedin_profile_url: https://linkedin.com/company/darpa
|
|
name: DARPA
|
|
type: organization
|
|
categories:
|
|
- artificial-intelligence
|
|
- virtual-reality
|
|
last_updated: '2023-10-26T11:34:30Z'
|
|
CompanySearchResult:
|
|
type: object
|
|
properties:
|
|
results:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/CSearchResult'
|
|
description: "\n A list of SearchResult objects.\n "
|
|
next_page:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The URL to the next page of search results. This\
|
|
\ will be null for the final page.\n "
|
|
total_result_count:
|
|
type: integer
|
|
description: Total results found.
|
|
example:
|
|
results:
|
|
- *id039
|
|
next_page: null
|
|
total_result_count: 1
|
|
SearchResult:
|
|
type: object
|
|
properties:
|
|
linkedin_profile_url:
|
|
type: string
|
|
description: "\n The LinkedIn Profile URL of the person\n "
|
|
profile:
|
|
$ref: '#/components/schemas/PublicPerson'
|
|
nullable: true
|
|
description:
|
|
"\n If `enrich_profiles=enrich` is specified, the person's\
|
|
\ entire profile\n is returned. Otherwise this field will return\
|
|
\ `null`.\n "
|
|
last_updated:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n ISO 8601 timestamp since the enriched profile was\
|
|
\ last scraped.\n "
|
|
example: &id040
|
|
linkedin_profile_url: https://www.linkedin.com/in/johnrmarty
|
|
profile:
|
|
public_identifier: johnrmarty
|
|
profile_pic_url: https://media.licdn.com/dms/image/C5603AQHaJSx0CBAUIA/profile-displayphoto-shrink_800_800/0/1558325759208?e=2147483647&v=beta&t=BluXpPg88xFnU2wMGLjuCUykSk_wKNdh8x3PI9wm6MI
|
|
background_cover_image_url: https://media.licdn.com/dms/image/C5616AQH9tkBTUhHfng/profile-displaybackgroundimage-shrink_200_800/0/1614530499015?e=2147483647&v=beta&t=VEoCyedtZulnAVYWT9BXfKHi5OFp8avElNjiz8kjSTU
|
|
first_name: John
|
|
last_name: Marty
|
|
full_name: John Marty
|
|
follower_count: null
|
|
occupation: Co-Founder at Freedom Fund Real Estate
|
|
headline: Financial Freedom through Real Estate - LinkedIn Top Voice
|
|
summary:
|
|
"Most people go through life lost, disengaged, and unhappy at work\
|
|
\ and in their lives - I'm 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's\n\nQ: Can you speak at my Company, University, event or podcast?\n\
|
|
A: I'd love to! I've 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'm a #3 (The Achiever)\n\nLETS CONNECT:\n\u2611\uFE0F Email: JohnRmarty@gmail.com\
|
|
\ (don't forget that \"R\"....The other guy gets my emails all the time)"
|
|
country: US
|
|
country_full_name: United States of America
|
|
city: Seattle
|
|
state: Washington
|
|
experiences:
|
|
- starts_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2021
|
|
ends_at: null
|
|
company: Freedom Fund Real Estate
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/freedomfund
|
|
company_facebook_profile_url: null
|
|
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.
|
|
|
|
|
|
Website: https://www.freedomfundinvestments.com/home'
|
|
location: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQEYxazZM_hXgQ/company-logo_100_100/0/1634934418976?e=2147483647&v=beta&t=wI0YdMmxIctkzvnKxRfuAbT8h5eok_DlUqEph68J37s
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2021
|
|
ends_at: null
|
|
company: Mindset Reset Podcast
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/mindset-reset-podcast
|
|
company_facebook_profile_url: null
|
|
title: Founder
|
|
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"
|
|
location: Denver, Colorado, United States
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQF9QJVQm3SOvA/company-logo_100_100/0/1614527476576?e=2147483647&v=beta&t=m3tx83nMN-E3XQFoJG0Wmch8U4qKnJ9i--5NSAfffC0
|
|
education:
|
|
- 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/
|
|
school_facebook_profile_url: null
|
|
description: null
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQGVi9eAHgWxFw/company-logo_100_100/0/1673448029676?e=2147483647&v=beta&t=NG6ttckXvnS2DX3abTfVACRY2E9Q1EcryNaJLRbE9OE
|
|
grade: null
|
|
activities_and_societies: null
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at:
|
|
day: 31
|
|
month: 12
|
|
year: 2015
|
|
field_of_study: School of Software Development
|
|
degree_name: null
|
|
school: Galvanize Inc
|
|
school_linkedin_profile_url: https://www.linkedin.com/school/galvanize-it/
|
|
school_facebook_profile_url: null
|
|
description:
|
|
rails, ruby, rspec, capybara, bootstrap, css, html, api integration,
|
|
Jquery, Javascript
|
|
logo_url: https://media.licdn.com/dms/image/C560BAQFKNxOZ4X0g8Q/company-logo_100_100/0/1670610916338?e=2147483647&v=beta&t=t7ImfhmsuIJ7HJGHEbPJ2suxdslKhzp9v-5h9_G4sWE
|
|
grade: null
|
|
activities_and_societies: null
|
|
languages:
|
|
- English
|
|
- Spanish
|
|
accomplishment_organisations:
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2012
|
|
ends_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2016
|
|
org_name: Microsoft
|
|
title: Software Developer
|
|
description: null
|
|
accomplishment_publications:
|
|
- name: Nobel Peace Prize
|
|
publisher: Acme Corp
|
|
published_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
url: https://example.com
|
|
accomplishment_honors_awards:
|
|
- title: Nobel Peace Prize
|
|
issuer: Acme Corp
|
|
issued_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
accomplishment_patents:
|
|
- title: The art of war
|
|
issuer: Acme Corp
|
|
issued_on:
|
|
day: 1
|
|
month: 1
|
|
year: 1970
|
|
description:
|
|
"\n Lorem ipsum dolor sit amet, consectetur\
|
|
\ adipiscing elit\n "
|
|
application_number: '123'
|
|
patent_number: '123'
|
|
url: null
|
|
accomplishment_courses:
|
|
- name: The course about ABCs
|
|
number: '123'
|
|
accomplishment_projects:
|
|
- starts_at:
|
|
day: 1
|
|
month: 3
|
|
year: 2015
|
|
ends_at: null
|
|
title: gMessenger
|
|
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's message content to the page in real time, with no page
|
|
refresh required. gMessenger also includes custom authentication with
|
|
three different permissions levels.
|
|
url: http://gmessenger.herokuapp.com/
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2015
|
|
ends_at: null
|
|
title: Taskly
|
|
description:
|
|
A task and project management responsive web app utilizing
|
|
Ruby on Rails - CSS and HTML
|
|
url: https://hidden-coast-7204.herokuapp.com/
|
|
accomplishment_test_scores:
|
|
- name: CS1101S
|
|
score: A
|
|
date_on:
|
|
day: 1
|
|
month: 1
|
|
year: 2010
|
|
description: Nailed it without studying.
|
|
volunteer_work:
|
|
- starts_at:
|
|
day: 1
|
|
month: 1
|
|
year: 2012
|
|
ends_at:
|
|
day: 1
|
|
month: 8
|
|
year: 2016
|
|
title: Surveyor
|
|
cause: To help the world
|
|
company: Microsoft
|
|
company_linkedin_profile_url: https://www.linkedin.com/company/microsoft
|
|
description: null
|
|
logo_url: null
|
|
certifications:
|
|
- starts_at: null
|
|
ends_at: null
|
|
name:
|
|
SAFe Agile Framework Practitioner - ( Scrum, XP, and Lean Practices
|
|
in the SAFe Enterprise)
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scaled Agile, Inc.
|
|
url: null
|
|
- starts_at: null
|
|
ends_at: null
|
|
name: SCRUM Alliance Certified Product Owner
|
|
license_number: null
|
|
display_source: null
|
|
authority: Scrum Alliance
|
|
url: null
|
|
connections: 500
|
|
people_also_viewed:
|
|
- link: https://www.linkedin.com/in/johndoe
|
|
name: John Doe
|
|
summary: Software Engineer at Google
|
|
location: Singapore
|
|
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've 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!"
|
|
activities:
|
|
- 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
|
|
similarly_named_profiles:
|
|
- name: John Martinez
|
|
link: https://www.linkedin.com/in/john-martinez-90384a229
|
|
summary:
|
|
"Owner of Fight or Flight Medical Consultants, LLC , Owner Marty\u2019\
|
|
s Hardwood Works"
|
|
location: San Antonio, TX
|
|
- name: John Marty
|
|
link: https://www.linkedin.com/in/senatormarty
|
|
summary: null
|
|
location: St Paul, MN
|
|
articles:
|
|
- title: Manufacturing opportunity
|
|
link: https://www.linkedin.com/pulse/manufacturing-opportunity-bill-gates/
|
|
published_date:
|
|
day: 27
|
|
month: 11
|
|
year: 2019
|
|
author: Bill Gates
|
|
image_url: https://media-exp1.licdn.com/dms/image/C4E12AQFftuPi0UiqWA/article-cover_image-shrink_720_1280/0/1574801149114?e=1640822400&v=beta&t=ZAe3ERmQCM8QHGmRPS2LJ-C76GD5PR7FBHMVL4Z6iVg
|
|
groups:
|
|
- profile_pic_url: https://media-exp1.licdn.com/dms/image/C4D07AQG9IK9V0pk3mQ/group-logo_image-shrink_92x92/0/1631371531293?e=1642060800&v=beta&t=UK1tfIppWa-Nx7k9whmm5f9XdZoBdJhApf9N3ke3204
|
|
name: Hadoop Users
|
|
url: https://www.linkedin.com/groups/988957
|
|
last_updated: '2023-10-26T11:34:30Z'
|
|
PersonSearchResult:
|
|
type: object
|
|
properties:
|
|
results:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/SearchResult'
|
|
description: "\n A list of SearchResult objects\n "
|
|
next_page:
|
|
type: string
|
|
nullable: true
|
|
description:
|
|
"\n The URL to the next page of search results. This\
|
|
\ will be null for the final page.\n "
|
|
total_result_count:
|
|
type: integer
|
|
description: Total results found.
|
|
example:
|
|
results:
|
|
- *id040
|
|
next_page: null
|
|
total_result_count: 1
|
|
CreditBalance:
|
|
type: object
|
|
properties:
|
|
credit_balance:
|
|
type: integer
|
|
description: Your current credit(s)
|
|
example:
|
|
credit_balance: 100000
|
|
DisposableEmail:
|
|
type: object
|
|
properties:
|
|
is_disposable_email:
|
|
type: boolean
|
|
description:
|
|
Returns a boolean value of the disposable nature of the given
|
|
email address
|
|
is_free_email:
|
|
type: boolean
|
|
description:
|
|
Returns a boolean value of the free status of the given email
|
|
address
|
|
example:
|
|
is_disposable_email: null
|
|
is_free_email: null
|
|
PersonalContactNumbers:
|
|
type: object
|
|
properties:
|
|
numbers:
|
|
type: array
|
|
items:
|
|
type: string
|
|
description: A list of contact numbers
|
|
example:
|
|
numbers:
|
|
- '+1123123123'
|
|
PDLEmailResult:
|
|
type: object
|
|
properties:
|
|
emails:
|
|
type: array
|
|
items:
|
|
type: string
|
|
description: A list of personal emails
|
|
invalid_emails:
|
|
type: array
|
|
items:
|
|
type: string
|
|
description: A list of invalid personal emails
|
|
example:
|
|
emails:
|
|
- random@gmail.com
|
|
- random2@yahoo.com
|
|
invalid_emails:
|
|
- random3@gmail.com
|
|
securitySchemes:
|
|
BearerAuth:
|
|
type: http
|
|
scheme: bearer
|