Skip navigation

Reference Manual

Browse Bright Outlook occupations

Category listing

https://services.onetcenter.org/ws/online/bright_outlook/
JSON XML
{
   "bright_outlook" : [
      {
         "href" : "https://services.onetcenter.org/ws/online/bright_outlook/grow",
         "title" : "Rapid Growth",
         "description" : "These occupations are projected to grow much faster than average (employment increase of 14% or more) over the period 2022-2032.",
         "category" : {
            "id" : "grow",
            "name" : "Grow Rapidly"
         }
      },
      {
         "href" : "https://services.onetcenter.org/ws/online/bright_outlook/openings",
         "title" : "Numerous Job Openings",
         "description" : "These occupations are projected to have 100,000 or more job openings over the period 2022-2032.",
         "category" : {
            "id" : "openings",
            "name" : "Openings"
         }
      },
      {
         "href" : "https://services.onetcenter.org/ws/online/bright_outlook/emerging",
         "title" : "New and Emerging",
         "description" : "These occupations are New & Emerging occupations in high growth industries.",
         "category" : {
            "id" : "emerging",
            "name" : "New & Emerging"
         }
      }
   ]
}

Bright Outlook occupations are expected to grow rapidly in the next several years, will have large numbers of job openings, or are new and emerging occupations. This response lists each Bright Outlook category available for browsing. The href attribute links to a listing of all occupations in that category.

Occupations in category

https://services.onetcenter.org/ws/online/bright_outlook/[category code]
JSON XML
{
   "category_id" : "grow",
   "sort" : "name",
   "start" : 1,
   "end" : 20,
   "total" : 350,
   "link" : [
      {
         "href" : "https://services.onetcenter.org/ws/online/bright_outlook/grow?category_id=grow&sort=name&start=21&end=40",
         "rel" : "next"
      }
   ],
   "occupation" : [
      {
         "href" : "https://services.onetcenter.org/ws/online/occupations/15-2011.00/",
         "code" : "15-2011.00",
         "title" : "Actuaries",
         "tags" : {
            "bright_outlook" : true,
            "green" : false
         },
         "bright_outlook" : {
            "description" : "This occupation is expected to grow rapidly.",
            "category" : [
               {
                  "id" : "grow",
                  "name" : "Grow Rapidly"
               }
            ]
         }
      },
      {
         "href" : "https://services.onetcenter.org/ws/online/occupations/29-1291.00/",
         "code" : "29-1291.00",
         "title" : "Acupuncturists",
         "tags" : {
            "bright_outlook" : true,
            "green" : false
         },
         "bright_outlook" : {
            "description" : "This occupation is expected to grow rapidly.",
            "category" : [
               {
                  "id" : "grow",
                  "name" : "Grow Rapidly"
               }
            ]
         }
      },
      ...
   ]
}

This response lists all occupations meeting the selected Bright Outlook criteria. Instead of a Bright Outlook category, developers may pass the value all to retrieve all Bright Outlook occupations. The bright_outlook element provides information about each occupation's outlook; occupations may meet multiple criteria.

By default, returned occupations are sorted by title. You can change this by passing the optional sort parameter:

  • name - sort by occupation title (default)
  • code - sort by O*NET-SOC code

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.

In this section