the fullJson Field Format
The fullJson field is a comprehensive JSON representation of a LinkedIn profile's data, encapsulating all extracted information.
This guide provides a detailed explanation of the JSON structure, field descriptions, and data types to help you effectively parse and utilize the data for your applications. (eg: usage with Zapier, n8n or Make)
Overview
The fullJson
field contains the following main sections:
Basic Information: Core profile details such as URL, name, title, and location.
Experiences: A list of professional experiences.
Educations: A list of educational qualifications.
Skills: An array of skills listed on the profile.
Languages: Languages the person is proficient in.
Certifications: Professional certifications acquired.
Recommendations: Received recommendations from other LinkedIn users.
Projects: Projects the person has worked on.
JSON Structure and Field Descriptions
Below is a detailed breakdown of each field within the fullJson
object.
1. Basic Information
url
String
LinkedIn profile URL.
emails
Array
List of email addresses found.
phones
Array
List of phone numbers found.
socials
Array
Links to other social media profiles found.
fullname
String
Full name as displayed on LinkedIn.
firstname
String
Given name (extracted from fullname
).
lastname
String
Family name (extracted from fullname
).
title
String
Current LinkedIn title.
location
String
Location as specified on LinkedIn.
about
String or null
The "About" section content from the profile.
2. Experiences
Field:
experiences
Type: Array of Experience Objects
Description: Professional experiences listed on the profile.
Experience Object Structure:
title
String or null
Job title held during the experience (null
if type
is "SPLIT"
).
companyName
String
Name of the company or organization.
url
String or null
LinkedIn URL of the company.
durationPeriodLocationContractType
String
Details including duration, location, and contract type (e.g., "juin 2016 - juin 2019 · 3 ans 1 mois\nParis, Île-de-France, France · Hybride"
).
description
String or null
Description written by the user.
type
String
Indicates if the experience is simple ("SIMPLE"
) or part of a split section ("SPLIT"
).
id
String or null
LinkedIn Identifier of the company (if company's LinkedIn page found).
subExperiences
Array
If type
is "SPLIT"
, this contains an array of sub-experiences (e.g., different roles within the same company).
3. Educations
Field:
educations
Type: Array of Education Objects
Description: Educational qualifications and institutions attended.
Education Object Structure:
title
String
Name of the educational institution.
degree
String or null
Degree obtained or field of study.
period
String
Duration of study (e.g., "2015 - 2019").
description
String or null
Additional details, honors, or activities.
url
String or null
LinkedIn URL of the educational institution.
id
String or null
LinkedIn Identifier for the institution.
4. Skills
Field:
skills
Type: Array of Skill Objects
Description: Skills listed on the profile.
Skill Object Structure:
name
String
Name of the skill (e.g., "Java").
5. Languages
Field:
languages
Type: Array of Language Objects
Description: Languages known and proficiency levels.
Language Object Structure:
name
String
Language name (e.g., "English").
proficiency
String
Proficiency level (e.g., "Native").
6. Certifications
Field:
certifications
Type: Array of Certification Objects
Description: Professional certifications obtained.
Certification Object Structure:
name
String
Name of the certification.
issuer
String
Issuing organization.
dates
String or null
Dates of issuance (e.g., "Issued Mar 2022").
7. Recommendations
Field:
recommendations
Type: Array of Recommendation Objects
Description: Recommendations received from other LinkedIn users.
Recommendation Object Structure:
fullName
String
Full name of the person who gave the recommendation.
url
String
LinkedIn profile URL of the recommender.
position
String
Professional title of the recommender.
periodAndRelation
String
The date and nature of the professional relationship.
text
String
The content of the recommendation.
8. Projects
Field:
projects
Type: Array of Project Objects
Description: Projects the individual has participated in.
Project Object Structure:
name
String
Name of the project.
dates
String or null
Duration of the project (e.g., "Jan 2020 - Dec 2020").
associatedWith
String or null
Company or institution that sponsored the project.
description
String or null
Additional details or description provided by the user.
Sample fullJson
Object
fullJson
ObjectBelow is an example of a fullJson
object with fictional data:
Need Assistance?
If you have any questions or need help at any point, feel free to:
Contact our Support Team
Last updated