Banner: Web API: List All ReEntry Programs

Web API: List All ReEntry Programs

List ReEntry Program Contacts

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

About this data

ReEntry Programs help people overcome barriers to employment caused by having a criminal record. They help people search for jobs, find training and answer other employment related questions.

CareerOneStop offers two APIs that provide data on reentry programs. This API retrieves all providers, while the other retrieves only programs in a certain geographic area. CareerOneStop uses the latter API in ReEntry Program Finder. Find out how a ReEntry 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/reentryprogramfinder/{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/reentryprogramfinder/{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/reentryprogramfinder/{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

{

  "ReEntryProgramList": [

    {

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

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

    },

    {

      "ID": "32801720",

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

      "OpenHour": "",

      "CenterIsOpen": "",

      "WhyClosed": "",

      "CenterStatus": "",

      "GeneralEmail": "",

      "Latitude": 61.216225,

      "Longitude": -149.887774,

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

      "Fax": "",

      "IsValid": "1",

      "ServiceMessage": ""

    },

    {

      "ID": "60227",

      "Name": "Fairbanks Job Center",

      "Address1": "675 Seventh Avenue",

      "Address2": "Station B",

      "City": "Fairbanks",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99701",

      "Phone": "907-451-5901",

      "Distance": "",

      "ProgramType": "Comprehensive Center",

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

      "CenterIsOpen": "Y",

      "WhyClosed": "",

      "CenterStatus": "",

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

      "Latitude": 64.840624,

      "Longitude": -147.724189,

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

      "Fax": "907-451-3127",

      "IsValid": "1",

      "ServiceMessage": ""

    },

    {

      "ID": "55463",

      "Name": "Juneau Job Center",

      "Address1": "10002 Glacier Highway",

      "Address2": "Suite 100",

      "City": "Juneau",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99801",

      "Phone": "907-465-4562",

      "Distance": "",

      "ProgramType": "Comprehensive Center",

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

      "CenterIsOpen": "N",

      "WhyClosed": "",

      "CenterStatus": "",

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

      "Latitude": 58.37108,

      "Longitude": -134.606776,

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

      "Fax": "907-465-2984",

      "IsValid": "1",

      "ServiceMessage": ""

    },

    {

      "ID": "55728",

      "Name": "Peninsula Job Center",

      "Address1": "11312 Kenai Spur Hwy",

      "Address2": "Suite 2",

      "City": "Kenai",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99611",

      "Phone": "907-335-3000",

      "Distance": "",

      "ProgramType": "Comprehensive Center",

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

      "CenterIsOpen": "Y",

      "WhyClosed": "",

      "CenterStatus": "",

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

      "Latitude": 60.554655,

      "Longitude": -151.256929,

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

      "Fax": "907-335-3050",

      "IsValid": "1",

      "ServiceMessage": ""

    },

    {

      "ID": "30015",

      "Name": "Ketchikan Job Center",

      "Address1": "2030 Sea Level Drive",

      "Address2": "Suite 220",

      "City": "Ketchikan",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99901",

      "Phone": "907-225-3181",

      "Distance": "",

      "ProgramType": "Comprehensive Center",

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

      "CenterIsOpen": "Y",

      "WhyClosed": "",

      "CenterStatus": "",

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

      "Latitude": 55.351133,

      "Longitude": -131.676702,

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

      "Fax": "907-247-0557",

      "IsValid": "1",

      "ServiceMessage": ""

    },

    {

      "ID": "38807",

      "Name": "Alabaster Career Center",

      "Address1": "109 Plaza Circle",

      "Address2": "",

      "City": "Alabaster",

      "StateAbbr": "AL",

      "StateName": "Alabama",

      "Zip": "35007",

      "Phone": "205-663-2542",

      "Distance": "",

      "ProgramType": "Comprehensive Center",

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

      "CenterIsOpen": "N",

      "WhyClosed": "Closed to public; available by phone and email.",

      "CenterStatus": "Closed to public; available by phone and email.",

      "GeneralEmail": "alabaster@alcc.alabama.gov",

      "Latitude": 33.218511,

      "Longitude": -86.826172,

      "WebSiteUrl": "https://www.facebook.com/pages/Alabaster-Career-Center/109659382392952",

      "Fax": "205-664-9229",

      "IsValid": "1",

      "ServiceMessage": ""

    },

    {

      "ID": "32503498",

      "Name": "Anniston Career Center",

      "Address1": "1731 Coleman Road",

      "Address2": "",

      "City": "Anniston",

      "StateAbbr": "AL",

      "StateName": "Alabama",

      "Zip": "36207",

      "Phone": "256-832-0147",

      "Distance": "",

      "ProgramType": "Comprehensive Center",

      "OpenHour": "8:00-5:00 Mon through Fri",

      "CenterIsOpen": "N",

      "WhyClosed": "Closed to public; available by phone and email.",

      "CenterStatus": "Closed to public; available by phone and email.",

      "GeneralEmail": "anniston@alcc.alabama.gov",

      "Latitude": 33.621851,

      "Longitude": -85.803401,

      "WebSiteUrl": "https://www.facebook.com/pages/Anniston-Career-Center/362134010479870",

      "Fax": "256-832-1183",

      "IsValid": "1",

      "ServiceMessage": ""

    },

    {

      "ID": "32510135",

      "Name": "Bay Minette Career Center",

      "Address1": "201 Faulkner Drive",

      "Address2": "",

      "City": "Bay Minette",

      "StateAbbr": "AL",

      "StateName": "Alabama",

      "Zip": "36507",

      "Phone": "251-937-4161",

      "Distance": "",

      "ProgramType": "Comprehensive Center",

      "OpenHour": "7:30am-4:30pm Mon-Fri",

      "CenterIsOpen": "N",

      "WhyClosed": "Closed to public; available by phone and email.",

      "CenterStatus": "Closed to public; available by phone and email.",

      "GeneralEmail": "Bayminette@alcc.alabama.gov",

      "Latitude": 30.860873,

      "Longitude": -87.776746,

      "WebSiteUrl": "https://www.facebook.com/pages/Bay-Minette-Career-Center/232242576850625",

      "Fax": "251-937-2859",

      "IsValid": "1",

      "ServiceMessage": ""

    },
//Remaining data being snipped, leaving partial data as sample
  ],   "RecordCount": 2101,

  "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": 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. "

      }

    ]

  }

}
<ReEntryProgramFinder

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

<ReEntryProgramList>

<ReEntryProgram>

<Address1>3301 Eagle Street</Address1>

<Address2>Suite 101</Address2>

<CenterIsOpen>Y</CenterIsOpen>

<City>Anchorage</City>

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

<ServiceMessage/>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

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

<WhyClosed/>

<CenterStatus/>

<Zip>99503</Zip>

</ReEntryProgram>

<ReEntryProgram>

<Address1>610 C Street</Address1>

<Address2/>

<CenterIsOpen/>

<City>Anchorage</City>

<Distance/>

<Fax/>

<GeneralEmail/>

<ID>32801720</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>ReEntry Program Provider</ProgramType>

<ServiceMessage/>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

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

<WhyClosed/>

<CenterStatus/>

<Zip>99501</Zip>

</ReEntryProgram>

<ReEntryProgram>

<Address1>675 Seventh Avenue</Address1>

<Address2>Station B</Address2>

<CenterIsOpen>Y</CenterIsOpen>

<City>Fairbanks</City>

<Distance/>

<Fax>907-451-3127</Fax>

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

<ID>60227</ID>

<IsValid>1</IsValid>

<Latitude>64.840624</Latitude>

<Longitude>-147.724189</Longitude>

<Name>Fairbanks Job Center</Name>

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

<Phone>907-451-5901</Phone>

<ProgramType>Comprehensive Center</ProgramType>

<ServiceMessage/>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

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

<WhyClosed/>

<CenterStatus/>

<Zip>99701</Zip>

</ReEntryProgram>

<ReEntryProgram>

<Address1>10002 Glacier Highway</Address1>

<Address2>Suite 100</Address2>

<CenterIsOpen>N</CenterIsOpen>

<City>Juneau</City>

<Distance/>

<Fax>907-465-2984</Fax>

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

<ID>55463</ID>

<IsValid>1</IsValid>

<Latitude>58.37108</Latitude>

<Longitude>-134.606776</Longitude>

<Name>Juneau Job Center</Name>

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

<Phone>907-465-4562</Phone>

<ProgramType>Comprehensive Center</ProgramType>

<ServiceMessage/>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

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

<WhyClosed/>

<CenterStatus/>

<Zip>99801</Zip>

</ReEntryProgram>

<ReEntryProgram>

<Address1>11312 Kenai Spur Hwy</Address1>

<Address2>Suite 2</Address2>

<CenterIsOpen>Y</CenterIsOpen>

<City>Kenai</City>

<Distance/>

<Fax>907-335-3050</Fax>

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

<ID>55728</ID>

<IsValid>1</IsValid>

<Latitude>60.554655</Latitude>

<Longitude>-151.256929</Longitude>

<Name>Peninsula Job Center</Name>

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

<Phone>907-335-3000</Phone>

<ProgramType>Comprehensive Center</ProgramType>

<ServiceMessage/>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

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

<WhyClosed/>

<CenterStatus/>

<Zip>99611</Zip>

</ReEntryProgram>

<ReEntryProgram>

<Address1>2030 Sea Level Drive</Address1>

<Address2>Suite 220</Address2>

<CenterIsOpen>Y</CenterIsOpen>

<City>Ketchikan</City>

<Distance/>

<Fax>907-247-0557</Fax>

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

<ID>30015</ID>

<IsValid>1</IsValid>

<Latitude>55.351133</Latitude>

<Longitude>-131.676702</Longitude>

<Name>Ketchikan Job Center</Name>

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

<Phone>907-225-3181</Phone>

<ProgramType>Comprehensive Center</ProgramType>

<ServiceMessage/>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

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

<WhyClosed/>

<CenterStatus/>

<Zip>99901</Zip>

</ReEntryProgram>

<ReEntryProgram>

<Address1>109 Plaza Circle</Address1>

<Address2/>

<CenterIsOpen>N</CenterIsOpen>

<City>Alabaster</City>

<Distance/>

<Fax>205-664-9229</Fax>

<GeneralEmail>alabaster@alcc.alabama.gov</GeneralEmail>

<ID>38807</ID>

<IsValid>1</IsValid>

<Latitude>33.218511</Latitude>

<Longitude>-86.826172</Longitude>

<Name>Alabaster Career Center</Name>

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

<Phone>205-663-2542</Phone>

<ProgramType>Comprehensive Center</ProgramType>

<ServiceMessage/>

<StateAbbr>AL</StateAbbr>

<StateName>Alabama</StateName>

<WebSiteUrl>https://www.facebook.com/pages/Alabaster-Career-Center/109659382392952</WebSiteUrl>

<WhyClosed>Closed to public; available by phone and email.</WhyClosed>

<CenterStatus>Closed to public; available by phone and email.</CenterStatus>

<Zip>35007</Zip>

</ReEntryProgram>

<ReEntryProgram>

<Address1>1731 Coleman Road</Address1>

<Address2/>

<CenterIsOpen>N</CenterIsOpen>

<City>Anniston</City>

<Distance/>

<Fax>256-832-1183</Fax>

<GeneralEmail>anniston@alcc.alabama.gov</GeneralEmail>

<ID>32503498</ID>

<IsValid>1</IsValid>

<Latitude>33.621851</Latitude>

<Longitude>-85.803401</Longitude>

<Name>Anniston Career Center</Name>

<OpenHour>8:00-5:00 Mon through Fri</OpenHour>

<Phone>256-832-0147</Phone>

<ProgramType>Comprehensive Center</ProgramType>

<ServiceMessage/>

<StateAbbr>AL</StateAbbr>

<StateName>Alabama</StateName>

<WebSiteUrl>https://www.facebook.com/pages/Anniston-Career-Center/362134010479870</WebSiteUrl>

<WhyClosed>Closed to public; available by phone and email.</WhyClosed>

<CenterStatus>Closed to public; available by phone and email.</CenterStatus>

<Zip>36207</Zip>

</ReEntryProgram>

<ReEntryProgram>

<Address1>201 Faulkner Drive</Address1>

<Address2/>

<CenterIsOpen>N</CenterIsOpen>

<City>Bay Minette</City>

<Distance/>

<Fax>251-937-2859</Fax>

<GeneralEmail>Bayminette@alcc.alabama.gov</GeneralEmail>

<ID>32510135</ID>

<IsValid>1</IsValid>

<Latitude>30.860873</Latitude>

<Longitude>-87.776746</Longitude>

<Name>Bay Minette Career Center</Name>

<OpenHour>7:30am-4:30pm Mon-Fri</OpenHour>

<Phone>251-937-4161</Phone>

<ProgramType>Comprehensive Center</ProgramType>

<ServiceMessage/>

<StateAbbr>AL</StateAbbr>

<StateName>Alabama</StateName>

<WebSiteUrl>https://www.facebook.com/pages/Bay-Minette-Career-Center/232242576850625</WebSiteUrl>

<WhyClosed>Closed to public; available by phone and email.</WhyClosed>

<CenterStatus>Closed to public; available by phone and email.</CenterStatus>

<Zip>36507</Zip>

</ReEntryProgram>
//Remaining data being snipped, leaving partial data as sample
</ReEntryProgramList>

<RecordCount>2101</RecordCount>

<SearchedBy>United States</SearchedBy>

</ReEntryProgramFinder>

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 city of ZIP location searched
String
Empty Cell
ProgramType
Program type. Possible values:
*Comprehensive Center (American Job Center)
*Affiliate Center (American Job Center)
*ReEntry Program 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
If this program serves Youth ex-offenders but not adult ex-offenders, then this parameter is populated with this message: "Programs for youth and young adults only" 
String
Empty Cell
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.