cURL
curl --request GET \
--url 'https://api.keyapi.ai/v1/linkedin/get_user_educations?urn=ACoAAARpiwIBp_SzoeHPlUfOvmtibe08Ea1iCh4&page=1' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/linkedin/get_user_educations',
params={"urn": "ACoAAARpiwIBp_SzoeHPlUfOvmtibe08Ea1iCh4", "page": 1},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({"urn": "ACoAAARpiwIBp_SzoeHPlUfOvmtibe08Ea1iCh4", "page": 1});
const response = await fetch(`https://api.keyapi.ai/v1/linkedin/get_user_educations?${params}`, {
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
});
const data = await response.json();
console.log(data);{
"code": 0,
"message": "success",
"data": {
"page": 1,
"total": 3,
"has_more": false,
"data": [
{
"id": "2231584",
"school": "NRI Group of Institute",
"date": {
"start": "2003",
"end": "2007"
},
"degree": "Bachelor of Engineering (B.E.), Electrical and Electronics Engineering"
},
{
"id": "13577249",
"school": "Maharishi Vidya Mandir Senior Secondary School",
"date": {
"start": "1998",
"end": "2002"
},
"degree": "10+2, Mathematics"
},
{
"id": "13678878",
"school": "Kendriya Vidyalaya",
"date": {
"start": "1993",
"end": "1998"
}
}
]
},
"requestId": "1386f236-962c-457a-bf15-ae53629553ec"
}{
"code": 400,
"data": null,
"message": "Missing required parameter: handle"
}{
"code": 401,
"data": null,
"message": "apiKey is null"
}{
"code": 402,
"data": null,
"message": "apiKey quota is not enough"
}{
"code": 429,
"data": null,
"message": "qps limit exceeded"
}{
"code": 500,
"data": null,
"message": "Internal server error"
}LinkedIn User
Get user educations
Get LinkedIn user education background
GET
/
v1
/
linkedin
/
get_user_educations
cURL
curl --request GET \
--url 'https://api.keyapi.ai/v1/linkedin/get_user_educations?urn=ACoAAARpiwIBp_SzoeHPlUfOvmtibe08Ea1iCh4&page=1' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/linkedin/get_user_educations',
params={"urn": "ACoAAARpiwIBp_SzoeHPlUfOvmtibe08Ea1iCh4", "page": 1},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({"urn": "ACoAAARpiwIBp_SzoeHPlUfOvmtibe08Ea1iCh4", "page": 1});
const response = await fetch(`https://api.keyapi.ai/v1/linkedin/get_user_educations?${params}`, {
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
});
const data = await response.json();
console.log(data);{
"code": 0,
"message": "success",
"data": {
"page": 1,
"total": 3,
"has_more": false,
"data": [
{
"id": "2231584",
"school": "NRI Group of Institute",
"date": {
"start": "2003",
"end": "2007"
},
"degree": "Bachelor of Engineering (B.E.), Electrical and Electronics Engineering"
},
{
"id": "13577249",
"school": "Maharishi Vidya Mandir Senior Secondary School",
"date": {
"start": "1998",
"end": "2002"
},
"degree": "10+2, Mathematics"
},
{
"id": "13678878",
"school": "Kendriya Vidyalaya",
"date": {
"start": "1993",
"end": "1998"
}
}
]
},
"requestId": "1386f236-962c-457a-bf15-ae53629553ec"
}{
"code": 400,
"data": null,
"message": "Missing required parameter: handle"
}{
"code": 401,
"data": null,
"message": "apiKey is null"
}{
"code": 402,
"data": null,
"message": "apiKey quota is not enough"
}{
"code": 429,
"data": null,
"message": "qps limit exceeded"
}{
"code": 500,
"data": null,
"message": "Internal server error"
}🪙1 creditper request
Copy for AI
🤖 Why Code When AI Can Do It For You?
Stop writing code like it’s 1970! Let AI do the heavy lifting - click the sparkles to copy a perfectly formatted prompt for ChatGPT, Claude, or your favorite AI assistant.
Authorizations
Query Parameters
User URN, obtainable from the get_user_profile API
Page number, default is 1
Response
The response is of type object.
⌘I

