Reference Manual
Browse by Career Cluster
Cluster listing
"career_cluster" : [
{
"href" : "https://services.onetcenter.org/ws/online/career_clusters/010100",
"code" : "010100",
"title" : "Advanced Manufacturing"
},
{
"href" : "https://services.onetcenter.org/ws/online/career_clusters/050100",
"code" : "050100",
"title" : "Agriculture"
},
...
]
}
<career_cluster href="https://services.onetcenter.org/ws/online/career_clusters/010100">
<code>010100</code>
<title>Advanced Manufacturing</title>
</career_cluster>
<career_cluster href="https://services.onetcenter.org/ws/online/career_clusters/050100">
<code>050100</code>
<title>Agriculture</title>
</career_cluster>
...
</career_clusters>
This response lists Career Clusters, which group occupations in the same field of work that require similar skills. The href attribute on each Cluster links to a listing of all occupations in that Cluster.
Career Clusters, Sub-Clusters, and linkages to SOC occupations are sourced from National Career Clusters® Framework
by Advance CTE (2024 edition). Linkages to O*NET-SOC detailed occupations are developed by the National Center for O*NET Development.
Occupations in cluster
"cluster" : "030100",
"sort" : "pathway",
"start" : 1,
"end" : 20,
"total" : 44,
"link" : [
{
"href" : "https://services.onetcenter.org/ws/online/career_clusters/030100?cluster=030100&sort=pathway&start=21&end=40",
"rel" : "next"
}
],
"occupation" : [
{
"href" : "https://services.onetcenter.org/ws/online/occupations/13-2011.00/",
"code" : "13-2011.00",
"title" : "Accountants and Auditors",
"tags" : {
"bright_outlook" : true,
"green" : false
},
"career_cluster" : {
"code" : "030100",
"title" : "Financial Services"
},
"career_pathway" : {
"code" : "030101",
"title" : "Accounting"
}
},
{
"href" : "https://services.onetcenter.org/ws/online/occupations/43-3011.00/",
"code" : "43-3011.00",
"title" : "Bill and Account Collectors",
"tags" : {
"bright_outlook" : false,
"green" : false
},
"career_cluster" : {
"code" : "030100",
"title" : "Financial Services"
},
"career_pathway" : {
"code" : "030101",
"title" : "Accounting"
}
},
...
]
}
<link href="https://services.onetcenter.org/ws/online/career_clusters/030100?cluster=030100&sort=pathway&start=21&end=40" rel="next" />
<occupation href="https://services.onetcenter.org/ws/online/occupations/13-2011.00/">
<code>13-2011.00</code>
<title>Accountants and Auditors</title>
<tags bright_outlook="true" green="false" />
<career_cluster code="030100">Financial Services</career_cluster>
<career_pathway code="030101">Accounting</career_pathway>
</occupation>
<occupation href="https://services.onetcenter.org/ws/online/occupations/43-3011.00/">
<code>43-3011.00</code>
<title>Bill and Account Collectors</title>
<tags bright_outlook="false" green="false" />
<career_cluster code="030100">Financial Services</career_cluster>
<career_pathway code="030101">Accounting</career_pathway>
</occupation>
...
</occupations>
This response lists all occupations grouped into the requested Career Cluster. Instead of a Career Cluster code, developers may pass the value all to retrieve occupations in any cluster. The career_cluster element indicates each result's Cluster.
Each result also includes a career_pathway element, corresponding to Sub-Clusters within the framework. Sub-Clusters are more specific areas within a cluster. Some occupations belong to multiple Sub-Clusters; in these cases, the code -1 is used.
By default, returned occupations are sorted by Sub-Cluster and then by occupation title. When the value all is used, occupations are sorted by Career Cluster. You can change this by passing the optional sort parameter:
- pathway - sort by Sub-Cluster (default)
- name - sort by occupation title
- code - sort by O*NET-SOC code
- cluster - sort by Career Cluster (default when listing all Clusters)
The result list is paged, returning 20 occupations at a time by default. To navigate the full set of results, use the link rel="next" and link rel="prev" elements, or provide start and end parameters to jump directly to the desired results.