Training
Module
Create Azure AI custom skill - Training
Learn how to define and implement a custom skill in Azure AI Search.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
The skills
API provides standardized skills data across the LinkedIn platform.
Field Name | Description |
---|---|
id | The skill ID. |
$URN | Standardized skill URN. |
locale | The optional locale the standardized name is in. |
standardizedName | The standardized name for this skill. |
GET https://api.linkedin.com/v2/skills/{id}?locale.language=en&locale.country=US
Field Name | Sub-Field Name | Required | Description |
---|---|---|---|
locale | Yes | The locale the skill data is requested in. | |
language | Yes | A lowercase, two-letter language code as defined by ISO-639. | |
country | Yes | An uppercase, two-letter country code as defined by ISO-3166. |
{
"standardizedName": "Sales",
"id": 5,
"locale": {
"country": "US",
"language": "en"
}
}
GET https://api.linkedin.com/v2/skills?ids={id1}&ids={id2}&ids={ids3}&locale.language=en&locale.country=US
Field Name | Sub-Field Name | Required | Description |
---|---|---|---|
locale | The locale the skill data is requested in. | ||
language | Yes | A lowercase, two-letter language code as defined by ISO-639. | |
country | Yes | An uppercase, two-letter country code as defined by ISO-3166. |
{
"statuses": {},
"results": {
"5": {
"standardizedName": "Sales",
"id": 5,
"locale": {
"country": "US",
"language": "en"
}
},
"17": {
"standardizedName": "Engineers",
"id": 17,
"locale": {
"country": "US",
"language": "en"
}
}
},
"errors": {}
}
GET https://api.linkedin.com/v2/skills?locale.language=en&locale.country=US
Field Name | Sub-Field Name | Required | Description |
---|---|---|---|
locale | The locale the skill data is requested in. | ||
language | Yes | A lowercase, two-letter language code as defined by ISO-639. | |
country | Yes | An uppercase, two-letter country code as defined by ISO-3166. |
{
"elements": [
{
"standardizedName": "Sales",
"id": 5,
"locale": {
"country": "US",
"language": "en"
}
},
{
"standardizedName": "Engineers",
"id": 17,
"locale": {
"country": "US",
"language": "en"
}
}
],
"paging": {
"count": 50,
"start": 0,
"links": [
{
"rel": "next",
"href": "/v2/skills?count=50&locale.country=US&locale.language=en&start=50",
"type": "application/json"
}
]
}
}
Note
This request is limited to 50 objects per response due to size limit. Use pagination to retrieve all skills. For example, https://api.linkedin.com/v2/skills?start=50
.
Training
Module
Create Azure AI custom skill - Training
Learn how to define and implement a custom skill in Azure AI Search.