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 用户
获取用户教育背景
获取LinkedIn用户教育背景
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 credit每次请求
Copy for AI
🤖 让 AI 帮你写调用代码
点击按钮复制一段结构化提示词,可直接交给 ChatGPT、Claude 或其他 AI 助手生成接口调用代码。
⌘I

