Banner: Web API: List All Youth Programs

Web API: List All Youth Programs

List Youth Program Contacts

The 'List All Youth Programs' Web API enables developers to retrieve all Youth Programs.

About this data

Youth Programs help people whose ages between 14 and 24. They help people search for jobs, find training and answer other employment related questions.

CareerOneStop offers two APIs that provide data on youth programs. This API retrieves all providers, while the other retrieves only programs in a certain geographic area. CareerOneStop uses the latter API in Youth Program Finder. Find out how a Youth Program can help you, and learn more about the data, at that tool's help page.

CareerOneStop Geocoding is provided through a license agreement with Microsoft. Your use of the data is subject to the Microsoft Bing Maps Terms of Service.

https://www.microsoft.com/en-us/maps/product

You may use the Geocodes locally in your applications. But, Geocodes cannot be stored, copied or shared. Please refer to the Microsoft Bing Terms of Use. 

Resource URL

https://api.careeronestop.org/v1/youthprogramfinder/{userId}?enableMetaData=true

Example Code

using System;

using System.Net.Http;

using System.Net.Http.Headers;

using System.Threading.Tasks;

namespace CareerOneStopAPISample

{

    class Program

    {

        static void Main(string[] args)

        {

            CreateRequest().Wait();

        }

        private static async Task CreateRequest()

        {

    

            var uri = new UriBuilder(Uri.UriSchemeHttps, "api.careeronestop.org")

            {

                Path = "/v1/youthprogramfinder/{userId}"

            };

            

            using (var http = new HttpClient())

            {

                http.DefaultRequestHeaders.Accept.Clear();

                http.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", "Your API Token");

                http.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

                var response = await http.GetAsync(uri.Uri).ConfigureAwait(false);

                if (response.IsSuccessStatusCode)

                {

                    var result = await response.Content.ReadAsStringAsync().ConfigureAwait(false);

                }

            }

        }

    }

}
import java.io.IOException;

import java.net.URI;

import java.net.URISyntaxException;

import org.apache.http.HttpEntity;

import org.apache.http.client.methods.CloseableHttpResponse;

import org.apache.http.client.methods.HttpGet;

import org.apache.http.client.utils.URIBuilder;

import org.apache.http.impl.client.CloseableHttpClient;

import org.apache.http.impl.client.HttpClients;

import org.apache.http.util.EntityUtils;

public class CareerOneStopAPISample {

    public static void main(String[] args) throws IOException, URISyntaxException {

    URI uri = new URIBuilder()

        .setScheme("https")

        .setHost("api.careeronestop.org")

        .setPath("/v1/youthprogramfinder/{userId}")

        .build();

    CloseableHttpResponse response = null;

    HttpGet httpGet = null;

    try {

        CloseableHttpClient httpClient = HttpClients.createDefault();

        httpGet = new HttpGet(uri);

        httpGet.setHeader("Content-Type","application/json");

        httpGet.setHeader("Authorization", "Bearer Your API Token");

        response = httpClient.execute(httpGet);

        HttpEntity entity = response.getEntity();

        System.out.println(EntityUtils.toString(entity));

    } finally {

        if(httpGet != null) httpGet.releaseConnection();

        if(response != null) response.close();

    }

   }

}

Request Parameters

Refer to the following table for a list of the required and optional request parameters. All parameter names and values are case sensitive. Important: You must provide all required parameters. Submitting an empty request does not return all possible results; an empty request returns an error.

Parameter Name Value Required? Description
API Token
String
Yes
This value is the unique API Token provided during the CareerOneStop Web API registration process
userId
String
Yes This value is the unique UserID provided during the CareerOneStop Web API registration process
enableMetaData
boolean
Optional Use this parameter to determine whether to include MetaData in the response.
True- Include metadata (default)
False - exclude metadata

Response Structure

{

  "YouthProgramList": [

    {

      "ID": "11232935",

      "Name": "Anchorage Job Center Midtown",

      "Address1": "3301 Eagle Street",

      "Address2": "Suite 101",

      "City": "Anchorage",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99503",

      "Phone": "907-269-4759",

      "Distance": "",

      "ProgramType": "Comprehensive Center",

      "ProgramTypeNValue": "Comprehensive Center",

      "OpenHour": "Monday-Friday, 8:00am - 5:00pm",

      "CenterIsOpen": "Y",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "midtown.jobcenter@alaska.gov",

      "Latitude": 61.190218,

      "Longitude": -149.873924,

      "WebSiteUrl": "https://jobs.alaska.gov/offices/",

      "Fax": "907-269-4825",

      "IsValid": "1",

      "ServiceMessage": "",

      "Contacts": [

        {

          "ContactName": "Gene Algiene",

          "ContactEmail": "genea@ninestar.org",

          "ContactPhone": "907-743-6074"

        },

        {

          "ContactName": "Roger Hamacher",

          "ContactEmail": "rogerh@ninestar.com",

          "ContactPhone": "907-743-6074"

        }

      ]

    },

    {

      "ID": "32746311",

      "Name": "Anchorage School District",

      "Address1": "5530 E Northern Lights Boulevard",

      "Address2": "",

      "City": "Anchorage",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99504",

      "Phone": "907-742-4000",

      "Distance": "",

      "ProgramType": "Youth Service Provider",

      "ProgramTypeNValue": "Youth Service Provider",

      "OpenHour": "",

      "CenterIsOpen": "",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "Pondolfino_Lou@asdk12.org",

      "Latitude": 61.19424,

      "Longitude": -149.77563,

      "WebSiteUrl": "https://www.asdk12.org/domain/1196",

      "Fax": "",

      "IsValid": "1",

      "ServiceMessage": "",

      "Contacts": [

        {

          "ContactName": "Lou Pondolfino",

          "ContactEmail": "pondolfino_lou@asdk12.org",

          "ContactPhone": "907-742-8949"

        }

      ]

    },

    {

      "ID": "32801512",

      "Name": "Goodwill Insustries Alaska - Job Connections",

      "Address1": "610 C Street",

      "Address2": "",

      "City": "Anchorage",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99501",

      "Phone": "907-258-0010",

      "Distance": "",

      "ProgramType": "Youth Service Provider",

      "ProgramTypeNValue": "Youth Service Provider",

      "OpenHour": "",

      "CenterIsOpen": "",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "",

      "Latitude": 61.216225,

      "Longitude": -149.887774,

      "WebSiteUrl": "https://goodwill-alaska.org/job-connections/",

      "Fax": "",

      "IsValid": "1",

      "ServiceMessage": "Programs for Ex-Offenders",

      "Contacts": []

    },

    {

      "ID": "32746315",

      "Name": "National Guard Youth Foundation - Anchorage",

      "Address1": "1251 Muldoon Road",

      "Address2": "Suite 114",

      "City": "Anchorage",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99504",

      "Phone": "907-375-5553",

      "Distance": "",

      "ProgramType": "Youth Service Provider",

      "ProgramTypeNValue": "Youth Service Provider",

      "OpenHour": "",

      "CenterIsOpen": "",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "ralph.harris@alaska.gov",

      "Latitude": 61.21066,

      "Longitude": -149.73099,

      "WebSiteUrl": "https://dmva.alaska.gov/AMYA/",

      "Fax": "",

      "IsValid": "1",

      "ServiceMessage": "",

      "Contacts": []

    },

    {

      "ID": "32746317",

      "Name": "Nine-Star Enterprises - Anchorage",

      "Address1": "730 I Street",

      "Address2": "",

      "City": "Anchorage",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99501",

      "Phone": "907-743-6074",

      "Distance": "",

      "ProgramType": "Youth Service Provider",

      "ProgramTypeNValue": "Youth Service Provider",

      "OpenHour": "",

      "CenterIsOpen": "",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "info@ninestar.org",

      "Latitude": 61.21498,

      "Longitude": -149.90005,

      "WebSiteUrl": "https://ninestar.org/youth-employment-services/",

      "Fax": "907-339-9927",

      "IsValid": "1",

      "ServiceMessage": "",

      "Contacts": [

        {

          "ContactName": "Roger Hamacher",

          "ContactEmail": "rogerh@ninestar.com",

          "ContactPhone": "907-743-6074"

        }

      ]

    },

    {

      "ID": "32746314",

      "Name": "Kuspuk School District",

      "Address1": "PO Box 49",

      "Address2": "",

      "City": "Aniak",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99557",

      "Phone": "907-222-2078",

      "Distance": "",

      "ProgramType": "Youth Service Provider",

      "ProgramTypeNValue": "Youth Service Provider",

      "OpenHour": "",

      "CenterIsOpen": "",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "cwilson@excelalaska.com",

      "Latitude": 61.6967,

      "Longitude": -157.1152,

      "WebSiteUrl": "https://www.kuspuk.org/",

      "Fax": "",

      "IsValid": "3",

      "ServiceMessage": "",

      "Contacts": [

        {

          "ContactName": "Erich Kuball",

          "ContactEmail": "ehkuball@me.com",

          "ContactPhone": "907-676‐0696"

        }

      ]

    },

    {

      "ID": "31329327",

      "Name": "Y-K Delta Job Center",

      "Address1": "BNC Complex Suite 112",

      "Address2": "PO Box 1607",

      "City": "Bethel",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99559-1607",

      "Phone": "907-543-2210",

      "Distance": "",

      "ProgramType": "Affiliate Center",

      "ProgramTypeNValue": "Affiliate Center",

      "OpenHour": "Monday - Friday, 8:00 AM - 5:00 PM",

      "CenterIsOpen": "Y",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "ykdelta.jobcenter@alaska.gov",

      "Latitude": 60.7942886352539,

      "Longitude": -161.760864257813,

      "WebSiteUrl": "http://www.jobs.state.ak.us/offices/",

      "Fax": "907-543-2099",

      "IsValid": "3",

      "ServiceMessage": "",

      "Contacts": [

        {

          "ContactName": "Anny Cochrane",

          "ContactEmail": "anny.cochrane@alaska.gov",

          "ContactPhone": "907-543-2210"

        }

      ]

    },

    {

      "ID": "32746310",

      "Name": "Access Alaska",

      "Address1": "526 Gaffney, Suite 100",

      "Address2": "",

      "City": "Fairbanks",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99701",

      "Phone": "907-479-7940",

      "Distance": "",

      "ProgramType": "Youth Service Provider",

      "ProgramTypeNValue": "Youth Service Provider",

      "OpenHour": "",

      "CenterIsOpen": "",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "info@accessalaska.org",

      "Latitude": 64.8369306436373,

      "Longitude": -147.715901868989,

      "WebSiteUrl": "https://www.accessalaska.org/",

      "Fax": "",

      "IsValid": "1",

      "ServiceMessage": "",

      "Contacts": [

        {

          "ContactName": "Ann Lefavor",

          "ContactEmail": "alefavor@accessalaska.net",

          "ContactPhone": "907-479-7940"

        }

      ]

    },

    {

      "ID": "32746316",

      "Name": "National Guard Youth Foundation - Fairbanks",

      "Address1": "202 Wein Avenue",

      "Address2": "",

      "City": "Fairbanks",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99701",

      "Phone": "907-374-7960",

      "Distance": "",

      "ProgramType": "Youth Service Provider",

      "ProgramTypeNValue": "Youth Service Provider",

      "OpenHour": "",

      "CenterIsOpen": "",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "angela.chapin@alaska.gov",

      "Latitude": 64.8361740112305,

      "Longitude": -147.71142578125,

      "WebSiteUrl": "https://dmva.alaska.gov/AMYA/",

      "Fax": "",

      "IsValid": "3",

      "ServiceMessage": "",

      "Contacts": []

    },

    {

      "ID": "32746319",

      "Name": "Tanana Chiefs Conference",

      "Address1": "122 First Avenue, Suite 600",

      "Address2": "",

      "City": "Fairbanks",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99701",

      "Phone": "907-452-8251 ext. 3353",

      "Distance": "",

      "ProgramType": "Youth Service Provider",

      "ProgramTypeNValue": "Youth Service Provider",

      "OpenHour": "",

      "CenterIsOpen": "",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "info@tananachiefs.org",

      "Latitude": 64.84425,

      "Longitude": -147.70742,

      "WebSiteUrl": "https://www.tananachiefs.org/",

      "Fax": "",

      "IsValid": "1",

      "ServiceMessage": "",

      "Contacts": [

        {

          "ContactName": "Katina Charles",

          "ContactEmail": "katina.charles@tananachiefs.org",

          "ContactPhone": "907-452‐8251"

        }

      ]

    },

    {

      "ID": "32746313",

      "Name": "Kodiak Island School District",

      "Address1": "722 Mill Bay Road",

      "Address2": "",

      "City": "Kodiak",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99615",

      "Phone": "907-486-7550",

      "Distance": "",

      "ProgramType": "Youth Service Provider",

      "ProgramTypeNValue": "Youth Service Provider",

      "OpenHour": "",

      "CenterIsOpen": "",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "dfitzgerald01@kibsd.org",

      "Latitude": 57.7933069968423,

      "Longitude": -152.398111847594,

      "WebSiteUrl": "https://www.kibsd.org/",

      "Fax": "",

      "IsValid": "1",

      "ServiceMessage": "",

      "Contacts": [

        {

          "ContactName": "Krista Hicks",

          "ContactEmail": "khicks01@kibsd.org",

          "ContactPhone": "907-481‐6245"

        }

      ]

    },

    {

      "ID": "32746312",

      "Name": "Kenai Peninsula Borough School District",

      "Address1": "148 N Binkley",

      "Address2": "",

      "City": "Soldotna",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99669",

      "Phone": "907-283-2166",

      "Distance": "",

      "ProgramType": "Youth Service Provider",

      "ProgramTypeNValue": "Youth Service Provider",

      "OpenHour": "",

      "CenterIsOpen": "",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "Mwidaman@KPBSD.k12.ak.us",

      "Latitude": 60.48991,

      "Longitude": -151.0695,

      "WebSiteUrl": "https://www.kpbsd.k12.ak.us/",

      "Fax": "",

      "IsValid": "1",

      "ServiceMessage": "",

      "Contacts": [

        {

          "ContactName": "Loretta Knudson‐Spalding",

          "ContactEmail": "lknudson‐spalding@kpbsd.k12.ak.us",

          "ContactPhone": "907-714‐8918"

        }

      ]

    },

    {

      "ID": "32746318",

      "Name": "Nine-Star Enterprises - Wasilla",

      "Address1": "300 N. Willow Street",

      "Address2": "",

      "City": "Wasilla",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99654",

      "Phone": "907-373-3006",

      "Distance": "",

      "ProgramType": "Youth Service Provider",

      "ProgramTypeNValue": "Youth Service Provider",

      "OpenHour": "",

      "CenterIsOpen": "",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "info@ninestar.org",

      "Latitude": 61.58255,

      "Longitude": -149.44793,

      "WebSiteUrl": "https://ninestar.org/youth-employment-services/",

      "Fax": "907-373-3001",

      "IsValid": "1",

      "ServiceMessage": "",

      "Contacts": [

        {

          "ContactName": "Roger Hamacher",

          "ContactEmail": "rogerh@ninestar.com",

          "ContactPhone": "907-373-3006"

        }

      ]

    },
//Remaining data being snipped, leaving partial data as sample
  ],

  "RecordCount": 3622,

  "SearchedBy": "United States",

  "MetaData": {

    "Publisher": "CareerOneStop publishes this API (www.careeronestop.org/Developers/WebAPI/web-api.aspx)",

    "Sponsor": "U.S. Department of Labor, Employment and Training Administration",

    "LastAccessDate": 1638204848,

    "CitationSuggested": "This data is delivered by an API from CareerOneStop, sponsored by U.S. Department of Labor, Employment and Training Administration.  \nwww.careeronestop.org\nData on Youth programs is compiled and maintained by CareerOneStop.\nCareerOneStop geocoding (locations of centers, by latitude and longitude) is provided through a license agreement with Microsoft. Your use of the data is subject to the Microsoft Bing Maps Terms of Service.\nhttps://www.microsoft.com/en-us/maps/product\nYou may use the geocodes locally in your applications. But, geocodes cannot be stored, copied or shared. Please refer to the Microsoft Bing Terms of Use. ",

    "DataSource": [

      {

        "DataName": "YouthPrograms",

        "DataSourceName": "CareerOneStop",

        "DataSourceUrl": "https://www.careeronestop.org/LocalHelp/EmploymentAndTraining/find-youth-programs.aspx",

        "DataLastUpdate": "Rolling",

        "DataVintageOrVersion": "Rolling",

        "DataDescription": "Youth Programs are local programs that offer free job, career, or education and training assistance to youth who is between the ages of 14 and 24. Many are offered through local nonprofit community organizations, and others are offered at local American Job Centers. Services may include:\n\nJob search help\nInformation on expungement or other legal processes\nCareer advice \nResume or job application assistance\nInterview practice\nInformation on apprenticeships or internships\nCommunity referrals for assistance with housing, health, or other concerns",

        "DataSourceCitation": "Youth programs data come from CareerOneStop (www.careeronestop.org), sponsored by the U.S. Department of Labor, Employment and Training Administration.  \nwww.careeronestop.org"

      },

      {

        "DataName": "Geocodes (latitude and longitude) from Microsoft Bing Maps",

        "DataSourceName": "Microsoft Bing Maps",

        "DataSourceUrl": "https://www.microsoft.com/en-us/maps/product",

        "DataLastUpdate": "Rolling (via API)",

        "DataVintageOrVersion": "Rolling (via API)",

        "DataDescription": "Geocodes (latitude and longitude) from Microsoft Bing Maps",

        "DataSourceCitation": "CareerOneStop geocoding (locations of centers, by latitude and longitude) is provided through a license agreement with Microsoft. Your use of the data is subject to the Microsoft Bing Maps Terms of Service.\nhttps://www.microsoft.com/en-us/maps/product\nYou may use the geocodes locally in your applications. But, geocodes cannot be stored, copied or shared. Please refer to the Microsoft Bing Terms of Use. "

      }

    ]

  }

}
<YouthProgramFinder

xmlns:i="http://www.w3.org/2001/XMLSchema-instance"

xmlns="http://schemas.datacontract.org/2004/07/XPAND.CareerOneStop.WebApi.ViewModels">

<MetaData

xmlns:d2p1="http://schemas.datacontract.org/2004/07/XPAND.CareerOneStop.WebApi.Core.MetaData">

<d2p1:CitationSuggested>This data is delivered by an API from CareerOneStop, sponsored by U.S. Department of Labor, Employment and Training Administration.

www.careeronestop.org

Data on Youth programs is compiled and maintained by CareerOneStop.

CareerOneStop geocoding (locations of centers, by latitude and longitude) is provided through a license agreement with Microsoft. Your use of the data is subject to the Microsoft Bing Maps Terms of Service.

https://www.microsoft.com/en-us/maps/product

You may use the geocodes locally in your applications. But, geocodes cannot be stored, copied or shared. Please refer to the Microsoft Bing Terms of Use. </d2p1:CitationSuggested>

<d2p1:DataSource>

<d2p1:MetaDataSource>

<d2p1:DataDescription>Youth Programs are local programs that offer free job, career, or education and training assistance to youth who is between the ages of 14 and 24. Many are offered through local nonprofit community organizations, and others are offered at local American Job Centers. Services may include:

Job search help

Information on expungement or other legal processes

Career advice

Resume or job application assistance

Interview practice

Information on apprenticeships or internships

Community referrals for assistance with housing, health, or other concerns</d2p1:DataDescription>

<d2p1:DataLastUpdate>Rolling</d2p1:DataLastUpdate>

<d2p1:DataName>YouthPrograms</d2p1:DataName>

<d2p1:DataSourceCitation>Youth programs data come from CareerOneStop (www.careeronestop.org), sponsored by the U.S. Department of Labor, Employment and Training Administration.

www.careeronestop.org</d2p1:DataSourceCitation>

<d2p1:DataSourceName>CareerOneStop</d2p1:DataSourceName>

<d2p1:DataSourceUrl>https://www.careeronestop.org/LocalHelp/EmploymentAndTraining/find-youth-programs.aspx</d2p1:DataSourceUrl>

<d2p1:DataVintageOrVersion>Rolling</d2p1:DataVintageOrVersion>

</d2p1:MetaDataSource>

<d2p1:MetaDataSource>

<d2p1:DataDescription>Geocodes (latitude and longitude) from Microsoft Bing Maps</d2p1:DataDescription>

<d2p1:DataLastUpdate>Rolling (via API)</d2p1:DataLastUpdate>

<d2p1:DataName>Geocodes (latitude and longitude) from Microsoft Bing Maps</d2p1:DataName>

<d2p1:DataSourceCitation>CareerOneStop geocoding (locations of centers, by latitude and longitude) is provided through a license agreement with Microsoft. Your use of the data is subject to the Microsoft Bing Maps Terms of Service.

https://www.microsoft.com/en-us/maps/product

You may use the geocodes locally in your applications. But, geocodes cannot be stored, copied or shared. Please refer to the Microsoft Bing Terms of Use. </d2p1:DataSourceCitation>

<d2p1:DataSourceName>Microsoft Bing Maps</d2p1:DataSourceName>

<d2p1:DataSourceUrl>https://www.microsoft.com/en-us/maps/product</d2p1:DataSourceUrl>

<d2p1:DataVintageOrVersion>Rolling (via API)</d2p1:DataVintageOrVersion>

</d2p1:MetaDataSource>

</d2p1:DataSource>

<d2p1:LastAccessDate>1638206273</d2p1:LastAccessDate>

<d2p1:Publisher>CareerOneStop publishes this API (www.careeronestop.org/Developers/WebAPI/web-api.aspx)</d2p1:Publisher>

<d2p1:Sponsor>U.S. Department of Labor, Employment and Training Administration</d2p1:Sponsor>

</MetaData>

<RecordCount>3622</RecordCount>

<SearchedBy>United States</SearchedBy>

<YouthProgramList>

<YouthProgram>

<Address1>3301 Eagle Street</Address1>

<Address2>Suite 101</Address2>

<CenterIsOpen>Y</CenterIsOpen>

<CenterStatus/>

<City>Anchorage</City>

<Contacts>

<YouthProgramContact>

<ContactEmail>genea@ninestar.org</ContactEmail>

<ContactName>Gene Algiene</ContactName>

<ContactPhone>907-743-6074</ContactPhone>

</YouthProgramContact>

<YouthProgramContact>

<ContactEmail>rogerh@ninestar.com</ContactEmail>

<ContactName>Roger Hamacher</ContactName>

<ContactPhone>907-743-6074</ContactPhone>

</YouthProgramContact>

</Contacts>

<Distance/>

<Fax>907-269-4825</Fax>

<GeneralEmail>midtown.jobcenter@alaska.gov</GeneralEmail>

<ID>11232935</ID>

<IsValid>1</IsValid>

<Latitude>61.190218</Latitude>

<Longitude>-149.873924</Longitude>

<Name>Anchorage Job Center Midtown</Name>

<OpenHour>Monday-Friday, 8:00am - 5:00pm</OpenHour>

<Phone>907-269-4759</Phone>

<ProgramType>Comprehensive Center</ProgramType>

<ProgramTypeNValue>Comprehensive Center</ProgramTypeNValue>

<ServiceMessage/>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

<WebSiteUrl>https://jobs.alaska.gov/offices/</WebSiteUrl>

<WhyClosed/>

<Zip>99503</Zip>

</YouthProgram>

<YouthProgram>

<Address1>5530 E Northern Lights Boulevard</Address1>

<Address2/>

<CenterIsOpen/>

<CenterStatus/>

<City>Anchorage</City>

<Contacts>

<YouthProgramContact>

<ContactEmail>pondolfino_lou@asdk12.org</ContactEmail>

<ContactName>Lou Pondolfino</ContactName>

<ContactPhone>907-742-8949</ContactPhone>

</YouthProgramContact>

</Contacts>

<Distance/>

<Fax/>

<GeneralEmail>Pondolfino_Lou@asdk12.org</GeneralEmail>

<ID>32746311</ID>

<IsValid>1</IsValid>

<Latitude>61.19424</Latitude>

<Longitude>-149.77563</Longitude>

<Name>Anchorage School District</Name>

<OpenHour/>

<Phone>907-742-4000</Phone>

<ProgramType>Youth Service Provider</ProgramType>

<ProgramTypeNValue>Youth Service Provider</ProgramTypeNValue>

<ServiceMessage/>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

<WebSiteUrl>https://www.asdk12.org/domain/1196</WebSiteUrl>

<WhyClosed/>

<Zip>99504</Zip>

</YouthProgram>

<YouthProgram>

<Address1>610 C Street</Address1>

<Address2/>

<CenterIsOpen/>

<CenterStatus/>

<City>Anchorage</City>

<Contacts/>

<Distance/>

<Fax/>

<GeneralEmail/>

<ID>32801512</ID>

<IsValid>1</IsValid>

<Latitude>61.216225</Latitude>

<Longitude>-149.887774</Longitude>

<Name>Goodwill Insustries Alaska - Job Connections</Name>

<OpenHour/>

<Phone>907-258-0010</Phone>

<ProgramType>Youth Service Provider</ProgramType>

<ProgramTypeNValue>Youth Service Provider</ProgramTypeNValue>

<ServiceMessage>Programs for Ex-Offenders</ServiceMessage>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

<WebSiteUrl>https://goodwill-alaska.org/job-connections/</WebSiteUrl>

<WhyClosed/>

<Zip>99501</Zip>

</YouthProgram>

<YouthProgram>

<Address1>1251 Muldoon Road</Address1>

<Address2>Suite 114</Address2>

<CenterIsOpen/>

<CenterStatus/>

<City>Anchorage</City>

<Contacts/>

<Distance/>

<Fax/>

<GeneralEmail>ralph.harris@alaska.gov</GeneralEmail>

<ID>32746315</ID>

<IsValid>1</IsValid>

<Latitude>61.21066</Latitude>

<Longitude>-149.73099</Longitude>

<Name>National Guard Youth Foundation - Anchorage</Name>

<OpenHour/>

<Phone>907-375-5553</Phone>

<ProgramType>Youth Service Provider</ProgramType>

<ProgramTypeNValue>Youth Service Provider</ProgramTypeNValue>

<ServiceMessage/>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

<WebSiteUrl>https://dmva.alaska.gov/AMYA/</WebSiteUrl>

<WhyClosed/>

<Zip>99504</Zip>

</YouthProgram>

<YouthProgram>

<Address1>730 I Street</Address1>

<Address2/>

<CenterIsOpen/>

<CenterStatus/>

<City>Anchorage</City>

<Contacts>

<YouthProgramContact>

<ContactEmail>rogerh@ninestar.com</ContactEmail>

<ContactName>Roger Hamacher</ContactName>

<ContactPhone>907-743-6074</ContactPhone>

</YouthProgramContact>

</Contacts>

<Distance/>

<Fax>907-339-9927</Fax>

<GeneralEmail>info@ninestar.org</GeneralEmail>

<ID>32746317</ID>

<IsValid>1</IsValid>

<Latitude>61.21498</Latitude>

<Longitude>-149.90005</Longitude>

<Name>Nine-Star Enterprises - Anchorage</Name>

<OpenHour/>

<Phone>907-743-6074</Phone>

<ProgramType>Youth Service Provider</ProgramType>

<ProgramTypeNValue>Youth Service Provider</ProgramTypeNValue>

<ServiceMessage/>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

<WebSiteUrl>https://ninestar.org/youth-employment-services/</WebSiteUrl>

<WhyClosed/>

<Zip>99501</Zip>

</YouthProgram>

<YouthProgram>

<Address1>PO Box 49</Address1>

<Address2/>

<CenterIsOpen/>

<CenterStatus/>

<City>Aniak</City>

<Contacts>

<YouthProgramContact>

<ContactEmail>ehkuball@me.com</ContactEmail>

<ContactName>Erich Kuball</ContactName>

<ContactPhone>907-676‐0696</ContactPhone>

</YouthProgramContact>

</Contacts>

<Distance/>

<Fax/>

<GeneralEmail>cwilson@excelalaska.com</GeneralEmail>

<ID>32746314</ID>

<IsValid>3</IsValid>

<Latitude>61.6967</Latitude>

<Longitude>-157.1152</Longitude>

<Name>Kuspuk School District</Name>

<OpenHour/>

<Phone>907-222-2078</Phone>

<ProgramType>Youth Service Provider</ProgramType>

<ProgramTypeNValue>Youth Service Provider</ProgramTypeNValue>

<ServiceMessage/>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

<WebSiteUrl>https://www.kuspuk.org/</WebSiteUrl>

<WhyClosed/>

<Zip>99557</Zip>

</YouthProgram>

<YouthProgram>

<Address1>BNC Complex Suite 112</Address1>

<Address2>PO Box 1607</Address2>

<CenterIsOpen>Y</CenterIsOpen>

<CenterStatus/>

<City>Bethel</City>

<Contacts>

<YouthProgramContact>

<ContactEmail>anny.cochrane@alaska.gov</ContactEmail>

<ContactName>Anny Cochrane</ContactName>

<ContactPhone>907-543-2210</ContactPhone>

</YouthProgramContact>

</Contacts>

<Distance/>

<Fax>907-543-2099</Fax>

<GeneralEmail>ykdelta.jobcenter@alaska.gov</GeneralEmail>

<ID>31329327</ID>

<IsValid>3</IsValid>

<Latitude>60.7942886352539</Latitude>

<Longitude>-161.760864257813</Longitude>

<Name>Y-K Delta Job Center</Name>

<OpenHour>Monday - Friday, 8:00 AM - 5:00 PM</OpenHour>

<Phone>907-543-2210</Phone>

<ProgramType>Affiliate Center</ProgramType>

<ProgramTypeNValue>Affiliate Center</ProgramTypeNValue>

<ServiceMessage/>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

<WebSiteUrl>http://www.jobs.state.ak.us/offices/</WebSiteUrl>

<WhyClosed/>

<Zip>99559-1607</Zip>

</YouthProgram>

<YouthProgram>

<Address1>526 Gaffney, Suite 100</Address1>

<Address2/>

<CenterIsOpen/>

<CenterStatus/>

<City>Fairbanks</City>

<Contacts>

<YouthProgramContact>

<ContactEmail>alefavor@accessalaska.net</ContactEmail>

<ContactName>Ann Lefavor</ContactName>

<ContactPhone>907-479-7940</ContactPhone>

</YouthProgramContact>

</Contacts>

<Distance/>

<Fax/>

<GeneralEmail>info@accessalaska.org</GeneralEmail>

<ID>32746310</ID>

<IsValid>1</IsValid>

<Latitude>64.8369306436373</Latitude>

<Longitude>-147.715901868989</Longitude>

<Name>Access Alaska</Name>

<OpenHour/>

<Phone>907-479-7940</Phone>

<ProgramType>Youth Service Provider</ProgramType>

<ProgramTypeNValue>Youth Service Provider</ProgramTypeNValue>

<ServiceMessage/>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

<WebSiteUrl>https://www.accessalaska.org/</WebSiteUrl>

<WhyClosed/>

<Zip>99701</Zip>

</YouthProgram>

<YouthProgram>

<Address1>202 Wein Avenue</Address1>

<Address2/>

<CenterIsOpen/>

<CenterStatus/>

<City>Fairbanks</City>

<Contacts/>

<Distance/>

<Fax/>

<GeneralEmail>angela.chapin@alaska.gov</GeneralEmail>

<ID>32746316</ID>

<IsValid>3</IsValid>

<Latitude>64.8361740112305</Latitude>

<Longitude>-147.71142578125</Longitude>

<Name>National Guard Youth Foundation - Fairbanks</Name>

<OpenHour/>

<Phone>907-374-7960</Phone>

<ProgramType>Youth Service Provider</ProgramType>

<ProgramTypeNValue>Youth Service Provider</ProgramTypeNValue>

<ServiceMessage/>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

<WebSiteUrl>https://dmva.alaska.gov/AMYA/</WebSiteUrl>

<WhyClosed/>

<Zip>99701</Zip>

</YouthProgram>

<YouthProgram>

<Address1>122 First Avenue, Suite 600</Address1>

<Address2/>

<CenterIsOpen/>

<CenterStatus/>

<City>Fairbanks</City>

<Contacts>

<YouthProgramContact>

<ContactEmail>katina.charles@tananachiefs.org</ContactEmail>

<ContactName>Katina Charles</ContactName>

<ContactPhone>907-452‐8251</ContactPhone>

</YouthProgramContact>

</Contacts>

<Distance/>

<Fax/>

<GeneralEmail>info@tananachiefs.org</GeneralEmail>

<ID>32746319</ID>

<IsValid>1</IsValid>

<Latitude>64.84425</Latitude>

<Longitude>-147.70742</Longitude>

<Name>Tanana Chiefs Conference</Name>

<OpenHour/>

<Phone>907-452-8251 ext. 3353</Phone>

<ProgramType>Youth Service Provider</ProgramType>

<ProgramTypeNValue>Youth Service Provider</ProgramTypeNValue>

<ServiceMessage/>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

<WebSiteUrl>https://www.tananachiefs.org/</WebSiteUrl>

<WhyClosed/>

<Zip>99701</Zip>

</YouthProgram>

<YouthProgram>

<Address1>722 Mill Bay Road</Address1>

<Address2/>

<CenterIsOpen/>

<CenterStatus/>

<City>Kodiak</City>

<Contacts>

<YouthProgramContact>

<ContactEmail>khicks01@kibsd.org</ContactEmail>

<ContactName>Krista Hicks</ContactName>

<ContactPhone>907-481‐6245</ContactPhone>

</YouthProgramContact>

</Contacts>

<Distance/>

<Fax/>

<GeneralEmail>dfitzgerald01@kibsd.org</GeneralEmail>

<ID>32746313</ID>

<IsValid>1</IsValid>

<Latitude>57.7933069968423</Latitude>

<Longitude>-152.398111847594</Longitude>

<Name>Kodiak Island School District</Name>

<OpenHour/>

<Phone>907-486-7550</Phone>

<ProgramType>Youth Service Provider</ProgramType>

<ProgramTypeNValue>Youth Service Provider</ProgramTypeNValue>

<ServiceMessage/>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

<WebSiteUrl>https://www.kibsd.org/</WebSiteUrl>

<WhyClosed/>

<Zip>99615</Zip>

</YouthProgram>

<YouthProgram>

<Address1>148 N Binkley</Address1>

<Address2/>

<CenterIsOpen/>

<CenterStatus/>

<City>Soldotna</City>

<Contacts>

<YouthProgramContact>

<ContactEmail>lknudson‐spalding@kpbsd.k12.ak.us</ContactEmail>

<ContactName>Loretta Knudson‐Spalding</ContactName>

<ContactPhone>907-714‐8918</ContactPhone>

</YouthProgramContact>

</Contacts>

<Distance/>

<Fax/>

<GeneralEmail>Mwidaman@KPBSD.k12.ak.us</GeneralEmail>

<ID>32746312</ID>

<IsValid>1</IsValid>

<Latitude>60.48991</Latitude>

<Longitude>-151.0695</Longitude>

<Name>Kenai Peninsula Borough School District</Name>

<OpenHour/>

<Phone>907-283-2166</Phone>

<ProgramType>Youth Service Provider</ProgramType>

<ProgramTypeNValue>Youth Service Provider</ProgramTypeNValue>

<ServiceMessage/>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

<WebSiteUrl>https://www.kpbsd.k12.ak.us/</WebSiteUrl>

<WhyClosed/>

<Zip>99669</Zip>

</YouthProgram>

<YouthProgram>

<Address1>300 N. Willow Street</Address1>

<Address2/>

<CenterIsOpen/>

<CenterStatus/>

<City>Wasilla</City>

<Contacts>

<YouthProgramContact>

<ContactEmail>rogerh@ninestar.com</ContactEmail>

<ContactName>Roger Hamacher</ContactName>

<ContactPhone>907-373-3006</ContactPhone>

</YouthProgramContact>

</Contacts>

<Distance/>

<Fax>907-373-3001</Fax>

<GeneralEmail>info@ninestar.org</GeneralEmail>

<ID>32746318</ID>

<IsValid>1</IsValid>

<Latitude>61.58255</Latitude>

<Longitude>-149.44793</Longitude>

<Name>Nine-Star Enterprises - Wasilla</Name>

<OpenHour/>

<Phone>907-373-3006</Phone>

<ProgramType>Youth Service Provider</ProgramType>

<ProgramTypeNValue>Youth Service Provider</ProgramTypeNValue>

<ServiceMessage/>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

<WebSiteUrl>https://ninestar.org/youth-employment-services/</WebSiteUrl>

<WhyClosed/>

<Zip>99654</Zip>

</YouthProgram>
//Remaining data being snipped, leaving partial data as sample
</YouthProgramList>

</YouthProgramFinder>

Response Parameters

Name Description Type
Parent
ID
ID
String
Empty Cell
Name
Name
String
Empty Cell
Address1
Address 1
String
Empty Cell
Address2
Address 2 String
Empty Cell
City
City
String
Empty Cell
StateAbbr
State Abbreviation
String
Empty Cell
StateName
State Name
String
Empty Cell
Zip
ZIP code
String
Empty Cell
Phone
Phone
String
Empty Cell
Distance
Distance (in miles) from city or ZIP location searched
String
Empty Cell
ProgramType
Program type. Possible values:
*Comprehensive Center (American Job Center)
*Affiliate Center (American Job Center)
*Youth Service Provider
String
Empty Cell
OpenHour
Open hours
String
Empty Cell
CenterIsOpen
Center is open , Y or N
String
Empty Cell
WhyClosed
Obsolete parameter, present only for backward compatibility. Do not use this going forward. 
String
Empty Cell
CenterStatus
Message about the current status of the center. If center is closed, this parameter might describe the reason. Centers can use this parameter to convey a wide variety of information. String
Empty Cell
GeneralEmail
Email address for general questions
String
Empty Cell
Latitude
Latitude
Number
Empty Cell
Longitude
Longitude
Number
Empty Cell
WebSiteUrl
Web Site URL
String
Empty Cell
Fax
Fax
String
Empty Cell
IsValid
Valid, a flag for location accuracy and display of map and directions
1 for both map and directions
2 for map only
3 for no display of map and directions
String
Empty Cell
ServiceMessage
Message indicates if this agency provides programs for youth ex-offenders
String
Empty Cell
Contacts
Youth Program Contacts    
Object
Empty Cell
ContactName
Contact Name
String Contacts
ContactEmail
Contact Email 
String Contacts
ContactPhone
Contact Phone
String Contacts
RecordCount
Record count - the number of results
Number
Empty Cell
SearchedBy
Searched By State; or City, State; or ZIP Code with Radius
String
Empty Cell
MetaData
Information about the source of the API
Object
Empty Cell
Publisher
Publisher of the API
String
MetaData
Sponsor
Sponsor of the API
String
MetaData
LastAccessDate           
The time and date when the API was run, using Unix "epoch" format. You can convert to date and time using a Unix epoch converter.
String
MetaData
CitationSuggested
If you use this data, CareerOneStop suggests you use this citation.
String
MetaData
DataSource
The data source object(s)
List of Objects
MetaData
DataName
Name of data
String
DataSource
DataSourceName
Name of data source
String
DataSource
DataSourceUrl
Url of data source
String
DataSource
DataLastUpdate
Date when CareerOneStop last updated this data
String
DataSource
DataVintageOrVersion
Version or vintage of the data
String
DataSource
DataDescription
Description of the data
String
DataSource
DataSourceCitation
Suggested citation for this data source
String
DataSource

Errors

Error/Status Code Description
 200
OK / Success. The request went through successfully and there is a response body.
 400
Bad Request (Request was invalid or missing parameters)
 401    
Unauthorized. This error occurs specifically when authentication is required and has failed or has not yet been provided correctly. (ex: Invalid API Token)
 404
This error will be shown in two scenarios 1) Not found - (An error occurred) and 2) Not found - (No data available)
 500
Internal Server Error. This error will occur when there is something critically wrong in the API call.