Skill Profiling via Competitors Companies
In this example we will be skill profiling using Lightcast Titles and leveraging our Classification, Job Postings and Profiles APIs.
Retrieve top "demanded" skills by a Lightcast Title at a specific company
Request #1
POST https://emsiservices.com/jpa/rankings/specialized_skills_name
{
"filter": {
"when": {
"start": "2023-01",
"end": "2023-10",
"type": "active"
},
"title": [
"ETEB9E65DF9C5E7EB9"
],
"company": [
"34789532"
]
},
"rank": {
"by": "unique_postings",
"limit": 10
}
}
Response #1
{
"data": {
"ranking": {
"buckets": [
{
"name": "Computer Science",
"unique_postings": 18
},
{
"name": "Electrical Engineering",
"unique_postings": 9
},
{
"name": "New Product Development",
"unique_postings": 9
},
{
"name": "Artificial Intelligence",
"unique_postings": 8
},
{
"name": "JIRA",
"unique_postings": 7
},
{
"name": "Product Management",
"unique_postings": 7
},
{
"name": "Project Management",
"unique_postings": 7
},
{
"name": "Agile Methodology",
"unique_postings": 6
},
{
"name": "Computer Engineering",
"unique_postings": 6
},
{
"name": "Machine Learning",
"unique_postings": 6
}
],
"facet": "specialized_skills_name",
}
Side Gets?
GET https://classification.emsicloud.com/taxonomies/titles/versions/5.7.0/concepts?limit=10&fields=name,id,level,levelName&q=ET96ABF6BA41141CBB
{
"data": [
{
"id": "ETEB9E65DF9C5E7EB9",
"name": "Technical Program Manager",
"levelName": "title",
"level": 0
}
],
"warnings": [],
"errors": []
}
{
"data":
{
"id": "34789532",
"name": "Nvidia",
"parentId": "34789532",
"level": 0,
"companyName": "Nvidia",
"city": "Santa Clara",
"state": "CA",
"postalCode": "95051",
"company_address_zip4": "95051",
"company_fips": "06085",
"company_status": "Active",
"isJobBoard": false,
"national_business_id": "943177549",
"national_business_id_prefix": "EIN",
"company_type": "FOREIGN BUSINESS CORPORATION",
}
}
Retrieve "supply" of skills be a Lightcast Title at a specific company
Request #2
POST https://emsiservices.com/profiles/rankings/specialized_skills_name
{
"filter": {
"last_updated": {
"start": 2018
},
"title": [
"ETEB9E65DF9C5E7EB9"
],
"company": ["34789532"]
},
"rank": {
"by": "profiles",
"limit": 10
}
}
Response #2
{
"data": {
"ranking": {
"buckets": [
{
"name": "Project Management",
"profiles": 83
},
{
"name": "New Product Development",
"profiles": 47
},
{
"name": "Product Management",
"profiles": 47
},
{
"name": "Agile Methodology",
"profiles": 45
},
{
"name": "Cross-Functional Team Leadership",
"profiles": 45
},
{
"name": "C++ (Programming Language)",
"profiles": 40
},
{
"name": "Software Development",
"profiles": 38
},
{
"name": "Embedded Systems",
"profiles": 37
},
{
"name": "Software Engineering",
"profiles": 34
},
{
"name": "Automation",
"profiles": 29
}
],
"facet": "specialized_skills_name",
}
}
}
Side Gets?
GET https://classification.emsicloud.com/taxonomies/titles/versions/5.7.0/concepts?limit=10&fields=name,id,level,levelName&q=ET96ABF6BA41141CBB
{
"data": [
{
"id": "ETEB9E65DF9C5E7EB9",
"name": "Technical Program Manager",
"levelName": "title",
"level": 0
}
],
"warnings": [],
"errors": []
}
{
"data": {
"id": "34789532",
"name": "Nvidia",
"parentId": "34789532",
"level": 0,
"companyName": "Nvidia",
"city": "Santa Clara",
"state": "CA",
"postalCode": "95051",
"company_address_zip4": "95051",
"company_fips": "06085",
"company_status": "Active",
"isJobBoard": false,
"national_business_id": "943177549",
"national_business_id_prefix": "EIN",
"company_type": "FOREIGN BUSINESS CORPORATION",
}
}
Updated 15 days ago