cURL
curl --request GET \
--url 'https://api.keyapi.ai/v1/linkedin/get_user_honors?urn=ACoAAC41xVEBx77koDz3k1eJ5E9t8UZ7g0IVGj4&page=1' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/linkedin/get_user_honors',
params={"urn": "ACoAAC41xVEBx77koDz3k1eJ5E9t8UZ7g0IVGj4", "page": 1},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({"urn": "ACoAAC41xVEBx77koDz3k1eJ5E9t8UZ7g0IVGj4", "page": 1});
const response = await fetch(`https://api.keyapi.ai/v1/linkedin/get_user_honors?${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": 6,
"has_more": false,
"data": [
{
"title": "Breakthrough",
"issued_by": "Issued by TAM of CMCGlobal",
"issued_at": "May 2023",
"associated_with": "CMC Global Company Limited."
},
{
"title": "Most valuable",
"issued_by": "Issued by TAM of CMCGlobal",
"issued_at": "May 2022",
"associated_with": "CMC Global Company Limited."
},
{
"title": "Best Performer Of The Year",
"issued_by": "Issued by CEO of CMCGlobal",
"issued_at": "May 2021",
"associated_with": "CMC Global Company Limited."
},
{
"title": "Best Performer Of The Year",
"issued_by": "Issued by Chairperson of CMC",
"issued_at": "Jan 2021",
"associated_with": "CMC Global Company Limited."
},
{
"title": "Best Performer Of The Year",
"issued_by": "Issued by CEO of SDC",
"issued_at": "Dec 2018",
"associated_with": "SDC Da Nang University"
},
{
"title": "Best Performer Of The Year",
"issued_by": "Issued by CEO of SDC",
"issued_at": "Jan 2017",
"associated_with": "SDC Da Nang University"
}
]
},
"requestId": "fd4fdd68-a6ef-47c0-b503-84a81ff57dda"
}{
"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 honors
Get LinkedIn user honors and awards
GET
/
v1
/
linkedin
/
get_user_honors
cURL
curl --request GET \
--url 'https://api.keyapi.ai/v1/linkedin/get_user_honors?urn=ACoAAC41xVEBx77koDz3k1eJ5E9t8UZ7g0IVGj4&page=1' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/linkedin/get_user_honors',
params={"urn": "ACoAAC41xVEBx77koDz3k1eJ5E9t8UZ7g0IVGj4", "page": 1},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({"urn": "ACoAAC41xVEBx77koDz3k1eJ5E9t8UZ7g0IVGj4", "page": 1});
const response = await fetch(`https://api.keyapi.ai/v1/linkedin/get_user_honors?${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": 6,
"has_more": false,
"data": [
{
"title": "Breakthrough",
"issued_by": "Issued by TAM of CMCGlobal",
"issued_at": "May 2023",
"associated_with": "CMC Global Company Limited."
},
{
"title": "Most valuable",
"issued_by": "Issued by TAM of CMCGlobal",
"issued_at": "May 2022",
"associated_with": "CMC Global Company Limited."
},
{
"title": "Best Performer Of The Year",
"issued_by": "Issued by CEO of CMCGlobal",
"issued_at": "May 2021",
"associated_with": "CMC Global Company Limited."
},
{
"title": "Best Performer Of The Year",
"issued_by": "Issued by Chairperson of CMC",
"issued_at": "Jan 2021",
"associated_with": "CMC Global Company Limited."
},
{
"title": "Best Performer Of The Year",
"issued_by": "Issued by CEO of SDC",
"issued_at": "Dec 2018",
"associated_with": "SDC Da Nang University"
},
{
"title": "Best Performer Of The Year",
"issued_by": "Issued by CEO of SDC",
"issued_at": "Jan 2017",
"associated_with": "SDC Da Nang University"
}
]
},
"requestId": "fd4fdd68-a6ef-47c0-b503-84a81ff57dda"
}{
"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

