Banner: Web API: List Youth Program Contacts

Web API: List Youth Program Contacts

List Youth Program Contacts

The 'List Youth Program Contacts' Web API enables developers to query and retrieve a list of Youth Programs by a set of parameters including zip code, city, and state.

About this data

This Web API is used on www.CareerOneStop.org to Find a list of Youth Programs. Youth Programs help the Youth search for jobs, find training, and answer other employment related questions. You can see how the tool works here. Find out how a Youth Program can help you by clicking here for more information.

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}/{location}/{radius}/{sortColumns}/{sortDirections}/{startRecord}/{limitRecord}?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}/{location}/{radius}/{sortColumns}/{sortDirections}/{startRecord}/{limitRecord}"

            };

            

            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}/{location}/{radius}/{sortColumns}/{sortDirections}/{startRecord}/{limitRecord}")

        .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
location
String
Yes This value accepts a city, state (Chicago, IL) or state (IL) or ZIP code (61299)
radius
String    
Yes This value accepts a radius size in miles around a specified location.
sortColumns
String    
Yes This value is for sorting the columns. Valid values are Location, Distance and Name, and default value is 0. Location is for the search by state, with the results sorted by city and zip code. Distance is for the search by zip code (or city, state), with the results sorted by the distance from the searched zip code (or city, state). Name is an additional option for sorting.
sortDirections
String
Yes Use this parameter to set the ordering of the results. Valid values are ASC or DESC. Default value is 0 for ASC 
startRecord
Integer
Yes This value is to set the starting record. Default value 0 is for the first record.
limitRecord
Integer
Yes This value sets the limit of the maximum number of records to be returned. Default value is 10.
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": "31249421",

      "Name": "People Inc. of Virginia",

      "Address1": "1217 West Main Street",

      "Address2": "1173 West Main Street (Mailing Address)",

      "City": "Abingdon",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "24210",

      "Phone": "276-623-9000, Ext. 2255",

      "Distance": "",

      "ProgramType": "Affiliate Center",

      "ProgramTypeNValue": "Affiliate Center",

      "OpenHour": "Monday - Friday, 8:00 a.m. to 4:30 p.m.",

      "CenterIsOpen": "Y",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "",

      "Latitude": 36.69697,

      "Longitude": -82.01511,

      "WebSiteUrl": "http://peopleinc.net/program-workforce-development.htm",

      "Fax": "276-525-1211",

      "IsValid": "1",

      "ServiceMessage": "",

      "Contacts": [

        {

          "ContactName": "Christina Tyler",

          "ContactEmail": "ctyler@peopleinc.net",

          "ContactPhone": "276-619-2291"

        }

      ]

    },

    {

      "ID": "31226698",

      "Name": "City of Alexandria Workforce Development Center",

      "Address1": "1900 North Beauregard Street",

      "Address2": "Suite 300",

      "City": "Alexandria",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "22311",

      "Phone": "703-746-5940",

      "Distance": "",

      "ProgramType": "Comprehensive Center",

      "ProgramTypeNValue": "Comprehensive Center",

      "OpenHour": "8:00 a.m. - 5:00 p.m. Mon - Fri",

      "CenterIsOpen": "Y",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "wdc@alexandriava.gov",

      "Latitude": 38.83371,

      "Longitude": -77.121058,

      "WebSiteUrl": "https://www.alexandriava.gov/WorkforceDevelopment",

      "Fax": "703-746-5983",

      "IsValid": "1",

      "ServiceMessage": "",

      "Contacts": [

        {

          "ContactName": "Delaney Colbert",

          "ContactEmail": "delaney.colbert@alexandriava.gov",

          "ContactPhone": "703-746-5940"

        }

      ]

    },

    {

      "ID": "32512611",

      "Name": "Fairfax SkillSource Center Alexandria",

      "Address1": "8350 Richmond Highway",

      "Address2": "Suite 327",

      "City": "Alexandria",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "22309",

      "Phone": "703-704-6286",

      "Distance": "",

      "ProgramType": "Comprehensive Center",

      "ProgramTypeNValue": "Comprehensive Center",

      "OpenHour": "M-Th 8:00-4:30  and F 10:00-4:30",

      "CenterIsOpen": "Y",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "",

      "Latitude": 38.731429,

      "Longitude": -77.103708,

      "WebSiteUrl": "http://www.myskillsource.org/page/id/15/jobseeker",

      "Fax": "703-653-6617",

      "IsValid": "1",

      "ServiceMessage": "",

      "Contacts": [

        {

          "ContactName": "Jessie Tamayo",

          "ContactEmail": "jessie.tamayo@fairfaxcounty.gov",

          "ContactPhone": "703-704-6286"

        }

      ]

    },

    {

      "ID": "31226952",

      "Name": "Arlington Employment Center",

      "Address1": "2100 Washington Blvd",

      "Address2": "First Floor",

      "City": "Arlington",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "22204",

      "Phone": "703-228-1400",

      "Distance": "",

      "ProgramType": "Comprehensive Center",

      "ProgramTypeNValue": "Comprehensive Center",

      "OpenHour": "8:00 a.m. - 4:00 p.m.  Mon-Fri",

      "CenterIsOpen": "Y",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "hfeldstein@arlingtonva.us",

      "Latitude": 38.873808,

      "Longitude": -77.083832,

      "WebSiteUrl": "https://aec.arlingtonva.us/",

      "Fax": "703-228-1170",

      "IsValid": "1",

      "ServiceMessage": "",

      "Contacts": [

        {

          "ContactName": "Nadia Conyers",

          "ContactEmail": "nconyers@arlingtonva.us",

          "ContactPhone": "703-228-1400"

        }

      ]

    },

    {

      "ID": "36394",

      "Name": "Virginia Career Works - Charlottesville Center",

      "Address1": "944 Glenwood Station Lane",

      "Address2": "Suite 103",

      "City": "Charlottesville",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "22901",

      "Phone": "434-529-6828",

      "Distance": "",

      "ProgramType": "Comprehensive Center",

      "ProgramTypeNValue": "Comprehensive Center",

      "OpenHour": "M, Tu, Th and F 8:30am-4:30pm; W 9:30am - 5:30pm; Closed on Holidays",

      "CenterIsOpen": "Y",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "charlottesville@vec.virginia.gov",

      "Latitude": 38.07693,

      "Longitude": -78.47013,

      "WebSiteUrl": "http://www.centralvirginia.org./piedmont-workforce-network/for-job-seekers/",

      "Fax": "434-963-2992",

      "IsValid": "1",

      "ServiceMessage": "",

      "Contacts": [

        {

          "ContactName": "Jennifer Johnson",

          "ContactEmail": "jjohnson@goodwillvalleys.com",

          "ContactPhone": "434-963-1960"

        }

      ]

    },

    {

      "ID": "32747343",

      "Name": "Career Services Program (Operated by Southampton County Public Schools)",

      "Address1": "23450 Southampton Parkway",

      "Address2": "",

      "City": "Courtland",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23837",

      "Phone": "757-653-2071",

      "Distance": "",

      "ProgramType": "Youth Service Provider",

      "ProgramTypeNValue": "Youth Service Provider",

      "OpenHour": "",

      "CenterIsOpen": "Y",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "",

      "Latitude": 36.701129,

      "Longitude": -77.102557,

      "WebSiteUrl": "http://www.southampton.k12.va.us/",

      "Fax": "757-653-9404",

      "IsValid": "1",

      "ServiceMessage": "",

      "Contacts": []

    },

    {

      "ID": "56870",

      "Name": "Covington Workforce Center",

      "Address1": "106 North Maple Avenue",

      "Address2": "",

      "City": "Covington",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "24426",

      "Phone": "540-962-0983",

      "Distance": "",

      "ProgramType": "Comprehensive Center",

      "ProgramTypeNValue": "Comprehensive Center",

      "OpenHour": "Monday, Tuesday, Thursday, Friday â€“ 8:30-4:30; Wednesdays â€“ 9:30-4:30",

      "CenterIsOpen": "Y",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "covington@vec.virginia.gov",

      "Latitude": 37.789527,

      "Longitude": -79.994991,

      "WebSiteUrl": "http://www.vec.virginia.gov/Covington",

      "Fax": "540-962-8750",

      "IsValid": "1",

      "ServiceMessage": "",

      "Contacts": [

        {

          "ContactName": "Anthony Curler",

          "ContactEmail": "anthony.curler@westernvirginiaworkforce.com",

          "ContactPhone": "540-965-9263"

        },

        {

          "ContactName": "Deloris Quarles",

          "ContactEmail": "Deloris.quarles@westernvirginiaworkforce.com",

          "ContactPhone": "540-965-9263"

        }

      ]

    },

    {

      "ID": "31301284",

      "Name": "Virginia Workforce Center - Danville",

      "Address1": "211 Nor Dan Drive",

      "Address2": "Suite 1055",

      "City": "Danville",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "24540",

      "Phone": "434-549-8220",

      "Distance": "",

      "ProgramType": "Comprehensive Center",

      "ProgramTypeNValue": "Comprehensive Center",

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

      "CenterIsOpen": "Y",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "",

      "Latitude": 36.626553,

      "Longitude": -79.397548,

      "WebSiteUrl": "http://www.westpiedmontworks.com/jobseekers",

      "Fax": "434-836-8461",

      "IsValid": "1",

      "ServiceMessage": "",

      "Contacts": [

        {

          "ContactName": "Kelli Hilton",

          "ContactEmail": "khilton@westpiedmontworks.com",

          "ContactPhone": "434-549-8220"

        }

      ]

    },

    {

      "ID": "32747709",

      "Name": "Bronco Success II (Operated by Franklin City Schools)",

      "Address1": "310 Crescent Dr",

      "Address2": "",

      "City": "Franklin",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23851",

      "Phone": "757-562-5187",

      "Distance": "",

      "ProgramType": "Youth Service Provider",

      "ProgramTypeNValue": "Youth Service Provider",

      "OpenHour": "",

      "CenterIsOpen": "Y",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "",

      "Latitude": 36.68846,

      "Longitude": -76.9451,

      "WebSiteUrl": "http://www.fcpsva.org/",

      "Fax": "757-562-3656",

      "IsValid": "1",

      "ServiceMessage": "",

      "Contacts": []

    },

    {

      "ID": "32747547",

      "Name": "Second Chances (Operated by Franklin City Public Schools)",

      "Address1": "310 Crescent Dr",

      "Address2": "",

      "City": "Franklin",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23851",

      "Phone": "757-562-5187",

      "Distance": "",

      "ProgramType": "Youth Service Provider",

      "ProgramTypeNValue": "Youth Service Provider",

      "OpenHour": "",

      "CenterIsOpen": "Y",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "",

      "Latitude": 36.68846,

      "Longitude": -76.9451,

      "WebSiteUrl": "http://www.fcpsva.org/",

      "Fax": "757-562-3656",

      "IsValid": "1",

      "ServiceMessage": "",

      "Contacts": []

    }

  ],

  "RecordCount": 33,

  "SearchedBy": "VA"

  "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": 1621602641,

    "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 ReEntry 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": "ReEntry Programs",

        "DataSourceName": "CareerOneStop",

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

        "DataLastUpdate": "Rolling",

        "DataVintageOrVersion": "Rolling",

        "DataDescription": "ReEntry Programs are local programs that offer free job, career, or education and training assistance to people who have a criminal record. 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 including information on any work restrictions related to your conviction\nResume or job application assistance\nInterview practice\nInformation on apprenticeships or internships\nCommunity referrals for assistance with housing, health, or other concerns",

        "DataSourceCitation": "ReEntry 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="http://schemas.datacontract.org/2004/07/XPAND.CareerOneStop.WebApi.ViewModels"

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

<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 ReEntry 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>ReEntry Programs are local programs that offer free job, career, or education and training assistance to people who have a criminal record. 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 including information on any work restrictions related to your conviction

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>ReEntry Programs</d2p1:DataName>

<d2p1:DataSourceCitation>ReEntry 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-reentry-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>1621602741</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>33</RecordCount>

<SearchedBy>VA</SearchedBy>

<YouthProgramList>

<YouthProgram>

<Address1>1217 West Main Street</Address1>

<Address2>1173 West Main Street (Mailing Address)</Address2>

<CenterIsOpen>Y</CenterIsOpen>

<WhyClosed></WhyClosed>

<CenterStatus></CenterStatus>

<City>Abingdon</City>

<Contacts>

<YouthProgramContact>

<ContactEmail>ctyler@peopleinc.net</ContactEmail>

<ContactName>Christina Tyler</ContactName>

<ContactPhone>276-619-2291</ContactPhone>

</YouthProgramContact>

</Contacts>

<Distance />

<Fax>276-525-1211</Fax>

<GeneralEmail />

<ID>31249421</ID>

<IsValid>1</IsValid>

<Latitude>36.69697</Latitude>

<Longitude>-82.01511</Longitude>

<Name>People Inc. of Virginia</Name>

<OpenHour>Monday - Friday, 8:00 a.m. to 4:30 p.m.</OpenHour>

<Phone>276-623-9000, Ext. 2255</Phone>

<ProgramType>Affiliate Center</ProgramType>

<ProgramTypeNValue>Affiliate Center</ProgramTypeNValue>

<ServiceMessage />

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<WebSiteUrl>http://peopleinc.net/program-workforce-development.htm</WebSiteUrl>

<Zip>24210</Zip>

</YouthProgram>

<YouthProgram>

<Address1>1900 North Beauregard Street</Address1>

<Address2>Suite 300</Address2>

<CenterIsOpen>Y</CenterIsOpen>

<WhyClosed></WhyClosed>

<CenterStatus></CenterStatus>

<City>Alexandria</City>

<Contacts>

<YouthProgramContact>

<ContactEmail>delaney.colbert@alexandriava.gov</ContactEmail>

<ContactName>Delaney Colbert</ContactName>

<ContactPhone>703-746-5940</ContactPhone>

</YouthProgramContact>

</Contacts>

<Distance />

<Fax>703-746-5983</Fax>

<GeneralEmail>wdc@alexandriava.gov</GeneralEmail>

<ID>31226698</ID>

<IsValid>1</IsValid>

<Latitude>38.83371</Latitude>

<Longitude>-77.121058</Longitude>

<Name>City of Alexandria Workforce Development Center</Name>

<OpenHour>8:00 a.m. - 5:00 p.m. Mon - Fri</OpenHour>

<Phone>703-746-5940</Phone>

<ProgramType>Comprehensive Center</ProgramType>

<ProgramTypeNValue>Comprehensive Center</ProgramTypeNValue>

<ServiceMessage />

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<WebSiteUrl>https://www.alexandriava.gov/WorkforceDevelopment</WebSiteUrl>

<Zip>22311</Zip>

</YouthProgram>

<YouthProgram>

<Address1>8350 Richmond Highway</Address1>

<Address2>Suite 327</Address2>

<CenterIsOpen>Y</CenterIsOpen>

<WhyClosed></WhyClosed>

<CenterStatus></CenterStatus>

<City>Alexandria</City>

<Contacts>

<YouthProgramContact>

<ContactEmail>jessie.tamayo@fairfaxcounty.gov</ContactEmail>

<ContactName>Jessie Tamayo</ContactName>

<ContactPhone>703-704-6286</ContactPhone>

</YouthProgramContact>

</Contacts>

<Distance />

<Fax>703-653-6617</Fax>

<GeneralEmail />

<ID>32512611</ID>

<IsValid>1</IsValid>

<Latitude>38.731429</Latitude>

<Longitude>-77.103708</Longitude>

<Name>Fairfax SkillSource Center Alexandria</Name>

<OpenHour>M-Th 8:00-4:30 and F 10:00-4:30</OpenHour>

<Phone>703-704-6286</Phone>

<ProgramType>Comprehensive Center</ProgramType>

<ProgramTypeNValue>Comprehensive Center</ProgramTypeNValue>

<ServiceMessage />

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<WebSiteUrl>http://www.myskillsource.org/page/id/15/jobseeker</WebSiteUrl>

<Zip>22309</Zip>

</YouthProgram>

<YouthProgram>

<Address1>2100 Washington Blvd</Address1>

<Address2>First Floor</Address2>

<CenterIsOpen>Y</CenterIsOpen>

<WhyClosed></WhyClosed>

<CenterStatus></CenterStatus>

<City>Arlington</City>

<Contacts>

<YouthProgramContact>

<ContactEmail>nconyers@arlingtonva.us</ContactEmail>

<ContactName>Nadia Conyers</ContactName>

<ContactPhone>703-228-1400</ContactPhone>

</YouthProgramContact>

</Contacts>

<Distance />

<Fax>703-228-1170</Fax>

<GeneralEmail>hfeldstein@arlingtonva.us</GeneralEmail>

<ID>31226952</ID>

<IsValid>1</IsValid>

<Latitude>38.873808</Latitude>

<Longitude>-77.083832</Longitude>

<Name>Arlington Employment Center</Name>

<OpenHour>8:00 a.m. - 4:00 p.m. Mon-Fri</OpenHour>

<Phone>703-228-1400</Phone>

<ProgramType>Comprehensive Center</ProgramType>

<ProgramTypeNValue>Comprehensive Center</ProgramTypeNValue>

<ServiceMessage />

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<WebSiteUrl>https://aec.arlingtonva.us/</WebSiteUrl>

<Zip>22204</Zip>

</YouthProgram>

<YouthProgram>

<Address1>944 Glenwood Station Lane</Address1>

<Address2>Suite 103</Address2>

<CenterIsOpen>Y</CenterIsOpen>

<WhyClosed></WhyClosed>

<CenterStatus></CenterStatus>

<City>Charlottesville</City>

<Contacts>

<YouthProgramContact>

<ContactEmail>jjohnson@goodwillvalleys.com</ContactEmail>

<ContactName>Jennifer Johnson</ContactName>

<ContactPhone>434-963-1960</ContactPhone>

</YouthProgramContact>

</Contacts>

<Distance />

<Fax>434-963-2992</Fax>

<GeneralEmail>charlottesville@vec.virginia.gov</GeneralEmail>

<ID>36394</ID>

<IsValid>1</IsValid>

<Latitude>38.07693</Latitude>

<Longitude>-78.47013</Longitude>

<Name>Virginia Career Works - Charlottesville Center</Name>

<OpenHour>M, Tu, Th and F 8:30am-4:30pm; W 9:30am - 5:30pm; Closed on Holidays</OpenHour>

<Phone>434-529-6828</Phone>

<ProgramType>Comprehensive Center</ProgramType>

<ProgramTypeNValue>Comprehensive Center</ProgramTypeNValue>

<ServiceMessage />

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<WebSiteUrl>http://www.centralvirginia.org./piedmont-workforce-network/for-job-seekers/</WebSiteUrl>

<Zip>22901</Zip>

</YouthProgram>

<YouthProgram>

<Address1>23450 Southampton Parkway</Address1>

<Address2 />

<CenterIsOpen>Y</CenterIsOpen>

<WhyClosed></WhyClosed>

<CenterStatus></CenterStatus>

<City>Courtland</City>

<Contacts />

<Distance />

<Fax>757-653-9404</Fax>

<GeneralEmail />

<ID>32747343</ID>

<IsValid>1</IsValid>

<Latitude>36.701129</Latitude>

<Longitude>-77.102557</Longitude>

<Name>Career Services Program (Operated by Southampton County Public Schools)</Name>

<OpenHour />

<Phone>757-653-2071</Phone>

<ProgramType>Youth Service Provider</ProgramType>

<ProgramTypeNValue>Youth Service Provider</ProgramTypeNValue>

<ServiceMessage />

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<WebSiteUrl>http://www.southampton.k12.va.us/</WebSiteUrl>

<Zip>23837</Zip>

</YouthProgram>

<YouthProgram>

<Address1>106 North Maple Avenue</Address1>

<Address2 />

<CenterIsOpen>Y</CenterIsOpen>

<WhyClosed></WhyClosed>

<CenterStatus></CenterStatus>

<City>Covington</City>

<Contacts>

<YouthProgramContact>

<ContactEmail>anthony.curler@westernvirginiaworkforce.com</ContactEmail>

<ContactName>Anthony Curler</ContactName>

<ContactPhone>540-965-9263</ContactPhone>

</YouthProgramContact>

<YouthProgramContact>

<ContactEmail>Deloris.quarles@westernvirginiaworkforce.com</ContactEmail>

<ContactName>Deloris Quarles</ContactName>

<ContactPhone>540-965-9263</ContactPhone>

</YouthProgramContact>

</Contacts>

<Distance />

<Fax>540-962-8750</Fax>

<GeneralEmail>covington@vec.virginia.gov</GeneralEmail>

<ID>56870</ID>

<IsValid>1</IsValid>

<Latitude>37.789527</Latitude>

<Longitude>-79.994991</Longitude>

<Name>Covington Workforce Center</Name>

<OpenHour>Monday, Tuesday, Thursday, Friday: 8:30-4:30; Wednesdays: 9:30-4:30</OpenHour>

<Phone>540-962-0983</Phone>

<ProgramType>Comprehensive Center</ProgramType>

<ProgramTypeNValue>Comprehensive Center</ProgramTypeNValue>

<ServiceMessage />

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<WebSiteUrl>http://www.vec.virginia.gov/Covington</WebSiteUrl>

<Zip>24426</Zip>

</YouthProgram>

<YouthProgram>

<Address1>211 Nor Dan Drive</Address1>

<Address2>Suite 1055</Address2>

<CenterIsOpen>Y</CenterIsOpen>

<WhyClosed></WhyClosed>

<CenterStatus></CenterStatus>

<City>Danville</City>

<Contacts>

<YouthProgramContact>

<ContactEmail>khilton@westpiedmontworks.com</ContactEmail>

<ContactName>Kelli Hilton</ContactName>

<ContactPhone>434-549-8220</ContactPhone>

</YouthProgramContact>

</Contacts>

<Distance />

<Fax>434-836-8461</Fax>

<GeneralEmail />

<ID>31301284</ID>

<IsValid>1</IsValid>

<Latitude>36.626553</Latitude>

<Longitude>-79.397548</Longitude>

<Name>Virginia Workforce Center - Danville</Name>

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

<Phone>434-549-8220</Phone>

<ProgramType>Comprehensive Center</ProgramType>

<ProgramTypeNValue>Comprehensive Center</ProgramTypeNValue>

<ServiceMessage />

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<WebSiteUrl>http://www.westpiedmontworks.com/jobseekers</WebSiteUrl>

<Zip>24540</Zip>

</YouthProgram>

<YouthProgram>

<Address1>310 Crescent Dr</Address1>

<Address2 />

<CenterIsOpen>Y</CenterIsOpen>

<WhyClosed></WhyClosed>

<CenterStatus></CenterStatus>

<City>Franklin</City>

<Contacts />

<Distance />

<Fax>757-562-3656</Fax>

<GeneralEmail />

<ID>32747709</ID>

<IsValid>1</IsValid>

<Latitude>36.68846</Latitude>

<Longitude>-76.9451</Longitude>

<Name>Bronco Success II (Operated by Franklin City Schools)</Name>

<OpenHour />

<Phone>757-562-5187</Phone>

<ProgramType>Youth Service Provider</ProgramType>

<ProgramTypeNValue>Youth Service Provider</ProgramTypeNValue>

<ServiceMessage />

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<WebSiteUrl>http://www.fcpsva.org/</WebSiteUrl>

<Zip>23851</Zip>

</YouthProgram>

<YouthProgram>

<Address1>310 Crescent Dr</Address1>

<Address2 />

<CenterIsOpen>Y</CenterIsOpen>

<WhyClosed></WhyClosed>

<CenterStatus></CenterStatus>

<City>Franklin</City>

<Contacts />

<Distance />

<Fax>757-562-3656</Fax>

<GeneralEmail />

<ID>32747547</ID>

<IsValid>1</IsValid>

<Latitude>36.68846</Latitude>

<Longitude>-76.9451</Longitude>

<Name>Second Chances (Operated by Franklin City Public Schools)</Name>

<OpenHour />

<Phone>757-562-5187</Phone>

<ProgramType>Youth Service Provider</ProgramType>

<ProgramTypeNValue>Youth Service Provider</ProgramTypeNValue>

<ServiceMessage />

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<WebSiteUrl>http://www.fcpsva.org/</WebSiteUrl>

<Zip>23851</Zip>

</YouthProgram>

</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.