Getting Started
Person
Person Activities
Workspace
Person
Education
This operation allows you to get education data including schools and degrees. It returns education information with credits and rate limit information. This operation consumes 1 credit.
GET
/
enrichment
/
education
Copy
curl --request GET \
--url https://api.scrapin.io/v1/enrichment/education
Copy
{
"success": true,
"credits_left": 90000,
"rate_limit_left": 19000,
"schools": [
{
"degreeName": "Engineering degree",
"fieldOfStudy": "Computers, Big Data and Connected Objects",
"description": "The IBO Major trains general IT engineers, able to master all components of information processing. To meet the changing strategic needs of the company, the future engineer will be trained in information systems, database architecture, mobility and application development.\n\nComputers, Big Data and Connected Objects.",
"linkedInUrl": "https://www.linkedin.com/company/15142508/",
"schoolLogo": "https://media.licdn.com/dms/image/v2/D4E0BAQFQCZFaAoQmKw/company-logo_400_400/company-logo_400_400/0/1725378371996/esilvparis_logo?e=1755129600&v=beta&t=bPVcaWC42d3OMjQOmErZ_YBkJ5lg2EoscC6sAev0Juo",
"schoolName": "ESILV - Ecole Supérieure d'Ingénieurs Léonard de Vinci",
"startEndDate": {
"start": "2017-02-01T12:00:00.000Z",
"end": "2020-06-01T12:00:00.000Z"
}
},
{
"degreeName": "Summer School Program",
"fieldOfStudy": "Programme d'échange international",
"linkedInUrl": "https://www.linkedin.com/company/15093901/",
"schoolLogo": "https://media.licdn.com/dms/image/v2/C560BAQGhFlIwwrPy5Q/company-logo_400_400/company-logo_400_400/0/1630625706195/_logo?e=1755129600&v=beta&t=c83EX-78tGZGlXfKvJ8gjl_vQUems29kKKI2475ye4s",
"schoolName": "Shanghai Normal University",
"startEndDate": {
"start": "2018-01-01T12:00:00.000Z",
"end": "2019-01-01T12:00:00.000Z"
}
},
{
"degreeName": " Professional License Computer Systems and Database",
"fieldOfStudy": "Analyst-Designer in Information and Decision System (ACSID)",
"description": "This degree offers a professional training in the business of information systems engineering and decision making. Its purpose is to facilitate the professional insertion in IT fields in continuous growth.",
"linkedInUrl": "https://www.linkedin.com/company/15091873/",
"schoolLogo": "https://media.licdn.com/dms/image/v2/C4D0BAQGRQuv1v-KRxQ/company-logo_400_400/company-logo_400_400/0/1630557231474/conservatoire_national_des_arts_et_mtiers_logo?e=1755129600&v=beta&t=j64Zzlo-W6LMZ3i6qthMVH6xoFxLcMtxRejnEDhObao",
"schoolName": "Conservatoire National des Arts et Métiers",
"startEndDate": {
"start": "2015-01-01T12:00:00.000Z",
"end": "2016-01-01T12:00:00.000Z"
}
}
]
}
Authorizations
This required parameter is a string. It represents the APIKEY obtained from the developer dashboard.
Query Parameters
This required parameter is a string. It represents the LinkedIn URL of the person with this format: https://www.linkedin.com/in/xxxxxxxxxxxxx/.
Response
200
application/json
The endpoint returns education information including schools and degrees.
The response is of type object
.
Copy
curl --request GET \
--url https://api.scrapin.io/v1/enrichment/education
Copy
{
"success": true,
"credits_left": 90000,
"rate_limit_left": 19000,
"schools": [
{
"degreeName": "Engineering degree",
"fieldOfStudy": "Computers, Big Data and Connected Objects",
"description": "The IBO Major trains general IT engineers, able to master all components of information processing. To meet the changing strategic needs of the company, the future engineer will be trained in information systems, database architecture, mobility and application development.\n\nComputers, Big Data and Connected Objects.",
"linkedInUrl": "https://www.linkedin.com/company/15142508/",
"schoolLogo": "https://media.licdn.com/dms/image/v2/D4E0BAQFQCZFaAoQmKw/company-logo_400_400/company-logo_400_400/0/1725378371996/esilvparis_logo?e=1755129600&v=beta&t=bPVcaWC42d3OMjQOmErZ_YBkJ5lg2EoscC6sAev0Juo",
"schoolName": "ESILV - Ecole Supérieure d'Ingénieurs Léonard de Vinci",
"startEndDate": {
"start": "2017-02-01T12:00:00.000Z",
"end": "2020-06-01T12:00:00.000Z"
}
},
{
"degreeName": "Summer School Program",
"fieldOfStudy": "Programme d'échange international",
"linkedInUrl": "https://www.linkedin.com/company/15093901/",
"schoolLogo": "https://media.licdn.com/dms/image/v2/C560BAQGhFlIwwrPy5Q/company-logo_400_400/company-logo_400_400/0/1630625706195/_logo?e=1755129600&v=beta&t=c83EX-78tGZGlXfKvJ8gjl_vQUems29kKKI2475ye4s",
"schoolName": "Shanghai Normal University",
"startEndDate": {
"start": "2018-01-01T12:00:00.000Z",
"end": "2019-01-01T12:00:00.000Z"
}
},
{
"degreeName": " Professional License Computer Systems and Database",
"fieldOfStudy": "Analyst-Designer in Information and Decision System (ACSID)",
"description": "This degree offers a professional training in the business of information systems engineering and decision making. Its purpose is to facilitate the professional insertion in IT fields in continuous growth.",
"linkedInUrl": "https://www.linkedin.com/company/15091873/",
"schoolLogo": "https://media.licdn.com/dms/image/v2/C4D0BAQGRQuv1v-KRxQ/company-logo_400_400/company-logo_400_400/0/1630557231474/conservatoire_national_des_arts_et_mtiers_logo?e=1755129600&v=beta&t=j64Zzlo-W6LMZ3i6qthMVH6xoFxLcMtxRejnEDhObao",
"schoolName": "Conservatoire National des Arts et Métiers",
"startEndDate": {
"start": "2015-01-01T12:00:00.000Z",
"end": "2016-01-01T12:00:00.000Z"
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.