Banner: Web API: Get All AJCs

Web API: Get All AJCs

Get All AJCs

The 'Get All AJCs' Web API enables developers to query and retrieve a list of all American Job Centers.

About this data

This Web API is used on www.CareerOneStop.org to find a list of American Job Centers. Nearly 2,400 American Job Centers (AJCs) nationwide help people search for jobs, find training, and answer other employment related questions. You can see how the tool works here. This API includes a request method that returns all American Job Center records in a single API call. Find out how an American Job Center 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/ajcfinder/{userId}

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/ajcfinder/{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/ajcfinder/{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

Response Structure

{

  "OneStopCenterList": [

    {

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

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

      "CenterIsOpen": "Y",

      "VeteranRep": "Yes",

      "BusinessRep": "Yes",

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

      "VetRepEmail": "kevin.french@alaska.gov,Gerritt.waterlander@alaska.gov",

      "BusRepEmail": "isaac.diboue@alaska.gov",

      "YSContact": "No",

      "YSContactEmail": "",

      "LastUpdated": "03/01/2018",

      "WhyClosed":"",

      "CenterStatus":"",

      "Latitude": 61.190218,

      "Longitude": -149.873924,

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

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

      "IsValid": "1",

      "Area": "AK",

      "YouthServices": [],

      "BusinessServices": [

        {

          "ServiceName": "Business Resources",

          "ServiceNValue": "4294967279"

        },

        {

          "ServiceName": "Recruiting Employees",

          "ServiceNValue": "4294967280"

        }

        {

          "ServiceName": "Workshops",

          "ServiceNValue": "4294967264"

        }

      ],

      "WorkersServices": [

        {

          "ServiceName": "Dealing with a Loss of a Job",

          "ServiceNValue": "4294967285"

        },

        {

          "ServiceName": "Finding Work",

          "ServiceNValue": "4294967281"

        },

        {

          "ServiceName": "Getting Skills and Education",

          "ServiceNValue": "4294967284"

        },

        {

          "ServiceName": "Other Resources",

          "ServiceNValue": "4294967283"

        },

        {

          "ServiceName": "Planning your career",

          "ServiceNValue": "4294967282"

        },

        {

          "ServiceName": "Workshops",

          "ServiceNValue": "4294967265"

        }

      ]

    },

    {

      "ID": "44089",

      "Name": "Anchorage Job Center Muldoon",

      "Address1": "1251 Muldoon Road",

      "Address2": "Suite 101",

      "City": "Anchorage",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99504",

      "Phone": "907-269-0000",

      "Distance": "",

      "ProgramType": "Affiliate Center",

      "ProgramTypeNValue": "4294967271",

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

      "CenterIsOpen": "Y",

      "VeteranRep": "No",

      "BusinessRep": "No",

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

      "VetRepEmail": "",

      "BusRepEmail": "",

      "YSContact": "No",

      "YSContactEmail": "",

      "LastUpdated": "03/13/2018",

      "WhyClosed":"",

      "CenterStatus":"",

      "Latitude": 61.2106,

      "Longitude": -149.733253,

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

      "Fax": "907-269-0004",

      "IsValid": "1",

      "Area": "AK",

      "YouthServices": [],

      "BusinessServices": [

        {

          "ServiceName": "Business Resources",

          "ServiceNValue": "4294967279"

        },

        {

          "ServiceName": "Recruiting Employees",

          "ServiceNValue": "4294967280"

        }

          "ServiceName": "Workshops",

          "ServiceNValue": "4294967264"

        }

      ],

      "WorkersServices": [

        {

          "ServiceName": "Dealing with a Loss of a Job",

          "ServiceNValue": "4294967285"

        },

        {

          "ServiceName": "Finding Work",

          "ServiceNValue": "4294967281"

        },

        {

          "ServiceName": "Getting Skills and Education",

          "ServiceNValue": "4294967284"

        },

        {

          "ServiceName": "Other Resources",

          "ServiceNValue": "4294967283"

        },

        {

          "ServiceName": "Planning your career",

          "ServiceNValue": "4294967282"

        }

          "ServiceName": "Workshops",

          "ServiceNValue": "4294967265"

        }

      ]

    },

    {

      "ID": "31329327",

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

      "Address1": "BNC Complex",

      "Address2": "Suite 112; PO Box 1607",

      "City": "Bethel",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99559-1607",

      "Phone": "907-543-1903",

      "Distance": "",

      "ProgramType": "Affiliate Center",

      "ProgramTypeNValue": "4294967271",

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

      "CenterIsOpen": "Y",

      "VeteranRep": "No",

      "BusinessRep": "Yes",

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

      "VetRepEmail": "",

      "BusRepEmail": "eileen.henrikson@alaska.gov",

      "YSContact": "No",

      "YSContactEmail": "",

      "LastUpdated": "04/26/2017",

      "WhyClosed":"",

      "CenterStatus":"",

      "Latitude": 60.9808,

      "Longitude": -161.1393,

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

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

      "IsValid": "3",

      "Area": "AK",

      "YouthServices": [],

      "BusinessServices": [

        {

          "ServiceName": "Business Resources",

          "ServiceNValue": "4294967279"

        },

        {

          "ServiceName": "Recruiting Employees",

          "ServiceNValue": "4294967280"

        }

      ],

      "WorkersServices": [

        {

          "ServiceName": "Dealing with a Loss of a Job",

          "ServiceNValue": "4294967285"

        },

        {

          "ServiceName": "Finding Work",

          "ServiceNValue": "4294967281"

        },

        {

          "ServiceName": "Getting Skills and Education",

          "ServiceNValue": "4294967284"

        },

        {

          "ServiceName": "Planning your career",

          "ServiceNValue": "4294967282"

        }

      ]

    },

    {

      "ID": "44554",

      "Name": "Bristol Bay Job Center",

      "Address1": "503 Wood River Road",

      "Address2": "PO Box 1149",

      "City": "Dillingham",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99576-1149",

      "Phone": "907-842-5579",

      "Distance": "",

      "ProgramType": "Affiliate Center",

      "ProgramTypeNValue": "4294967271",

      "OpenHour": "Monda - Friday, 8:00 AM - 4:30 PM",

      "CenterIsOpen": "Y",

      "VeteranRep": "No",

      "BusinessRep": "Yes",

      "GeneralEmail": "dillingham_jobcenter@labor.state.ak.us",

      "VetRepEmail": "",

      "BusRepEmail": "carol.luckhurst@alaska.gov",

      "YSContact": "No",

      "YSContactEmail": "",

      "LastUpdated": "03/20/2018",

      "WhyClosed":"",

      "CenterStatus":"",

      "Latitude": 59.0432,

      "Longitude": -158.499887,

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

      "Fax": "907-842-5679",

      "IsValid": "1",

      "Area": "AK",

      "YouthServices": [],

      "BusinessServices": [

        {

          "ServiceName": "Recruiting Employees",

          "ServiceNValue": "4294967280"

        }

      ],

      "WorkersServices": [

        {

          "ServiceName": "Dealing with a Loss of a Job",

          "ServiceNValue": "4294967285"

        },

        {

          "ServiceName": "Finding Work",

          "ServiceNValue": "4294967281"

        },

        {

          "ServiceName": "Getting Skills and Education",

          "ServiceNValue": "4294967284"

        },

        {

          "ServiceName": "Planning your career",

          "ServiceNValue": "4294967282"

        }

      ]

    },

    {

      "ID": "60227",

      "Name": "Fairbanks Job Center",

      "Address1": "675 Seventh Avenue",

      "Address2": "Station D",

      "City": "Fairbanks",

      "StateAbbr": "AK",

      "StateName": "Alaska",

      "Zip": "99701",

      "Phone": "907-451-5967",

      "Distance": "",

      "ProgramType": "Comprehensive Center",

      "ProgramTypeNValue": "4294967288",

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

      "CenterIsOpen": "Y",

      "VeteranRep": "Yes",

      "BusinessRep": "Yes",

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

      "VetRepEmail": "",

      "BusRepEmail": "grace.allers@alaska.gov",

      "YSContact": "Yes",

      "YSContactEmail": "rene.nordin@alaska.gov",

      "LastUpdated": "04/11/2018",

      "WhyClosed":"",

      "CenterStatus":"",

      "Latitude": 64.840624,

      "Longitude": -147.724189,

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

      "Fax": "907-451-2919",

      "IsValid": "1",

      "Area": "AK",

      "YouthServices": [],

      "BusinessServices": [

        {

          "ServiceName": "Business Resources",

          "ServiceNValue": "4294967279"

        },

        {

          "ServiceName": "Recruiting Employees",

          "ServiceNValue": "4294967280"

        },

        {

          "ServiceName": "Workshops",

          "ServiceNValue": "4294967264"

        }

      ],

      "WorkersServices": [

        {

          "ServiceName": "Dealing with a Loss of a Job",

          "ServiceNValue": "4294967285"

        },

        {

          "ServiceName": "Finding Work",

          "ServiceNValue": "4294967281"

        },

        {

          "ServiceName": "Getting Skills and Education",

          "ServiceNValue": "4294967284"

        },

        {

          "ServiceName": "Other Resources",

          "ServiceNValue": "4294967283"

        },

        {

          "ServiceName": "Planning your career",

          "ServiceNValue": "4294967282"

        },

        {

          "ServiceName": "Workshops",

          "ServiceNValue": "4294967264"

        }

      ]

    }

 }

//Ramaining instance of AJCs have been snipped, leaving just a sample
<AJCFinder

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

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

<OneStopCenterList>

<OneStopCenter>

<Address1>3301 Eagle Street</Address1>

<Address2>Suite 101</Address2>

<Area>AK</Area>

<BusRepEmail >martine.robinson@alaska.gov</BusRepEmail >

<BusinessRep>Yes</BusinessRep>

<BusinessServices>

<Service>

<ServiceNValue>4294967275</ServiceNValue>

<ServiceName>Business Resources</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967276</ServiceNValue>

<ServiceName>Recruiting Employees</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967262</ServiceNValue>

<ServiceName>Workshops</ServiceName>

</Service>

</BusinessServices>

<CenterIsOpen>Y</CenterIsOpen>

<City>Anchorage</City>

<Distance />

<Fax>907.269.4825</Fax>

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

<ID>11232935</ID>

<IsValid>1</IsValid>

<LastUpdated>03/01/2018</LastUpdated>

<Latitude>61.190218</Latitude>

<Longitude>-149.873924</Longitude>

<Name>Anchorage Job Center Midtown1</Name>

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

<Phone>907.269.4759</Phone>

<ProgramType>Comprehensive Center</ProgramType>

<ProgramTypeNValue>4294967288</ProgramTypeNValue>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

<VetRepEmail>kevin.french@alaska.gov,Gerritt.waterlander@alaska.gov</VetRepEmail>

<VeteranRep>Yes</VeteranRep>

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

<WhyClosed>

<CenterStatus>

<WorkersServices>

<Service>

<ServiceNValue>4294967281</ServiceNValue>

<ServiceName>Dealing with a Loss of a Job</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967277</ServiceNValue>

<ServiceName>Finding Work</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967280</ServiceNValue>

<ServiceName>Getting Skills and Education</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967279</ServiceNValue>

<ServiceName>Other Resources</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967278</ServiceNValue>

<ServiceName>Planning your career</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967263</ServiceNValue>

<ServiceName>Workshops</ServiceName>

</Service>

</WorkersServices>

<YSContact>No</YSContact>

</YSContactEmail> 

<YouthServices>

<Zip>99503</Zip>

</OneStopCenter>

<OneStopCenter>

<Address1>1251 Muldoon Road</Address1>

<Address2>Suite 101</Address2>

<Area>AK</Area>

<BusRepEmail/>

<BusinessRep>No</BusinessRep>

<BusinessServices>

<Service> 

<ServiceNValue>4294967275</ServiceNValue> 

<ServiceName>Business Resources</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967276</ServiceNValue>

<ServiceName>Recruiting Employees</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967262</ServiceNValue>

<ServiceName>Workshops</ServiceName>

</Service>

</BusinessServices>

<CenterIsOpen>Y</CenterIsOpen>

<City>Anchorage</City>

<Distance />

<Fax>907-269-0004</Fax>

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

<ID>44089</ID>

<IsValid>1</IsValid>

<LastUpdated>03/13/2018</LastUpdated>

<Latitude>61.2106</Latitude>

<Longitude>-149.733253</Longitude>

<Name>Anchorage Job Center Muldoon</Name>

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

<Phone>907-269-0000</Phone>

<ProgramType>Affiliate Center</ProgramType>

<ProgramTypeNValue>4294967271</ProgramTypeNValue>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName> 

<VetRepEmail/>

<VeteranRep>No</VeteranRep>

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

<WhyClosed/>

<CenterStatus/>

<WorkersServices>

<Service>

<ServiceNValue>4294967281</ServiceNValue>

<ServiceName>Dealing with a Loss of a Job</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967277</ServiceNValue>

<ServiceName>Finding Work</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967280</ServiceNValue>

<ServiceName>Getting Skills and Education</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967279</ServiceNValue>

<ServiceName>Other Resources</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967278</ServiceNValue>

<ServiceName>Planning your career</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967263</ServiceNValue>

<ServiceName>Workshops</ServiceName>

</Service>

</WorkersServices>

<YSContact>No</YSContact>

<YSContactEmail/>

<YouthServices>

<Zip>99504</Zip>

<OneStopCenter>

<Address1>BNC Complex</Address1>

<Address2 >Suite 112; PO Box 1607</Address2 >

<Area>AK</Area>

<BusRepEmail >eileen.henrikson@alaska.gov</BusRepEmail >

<BusinessRep>Yes</BusinessRep>

<BusinessServices>

<Service>

<ServiceNValue>4294967275</ServiceNValue>

<ServiceName>Business Resources</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967276</ServiceNValue>

<ServiceName>Recruiting Employees</ServiceName>

</Service>

</BusinessServices>

<CenterIsOpen>Y</CenterIsOpen>

<City>Bethel</City>

<Distance />

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

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

<ID>31329327</ID>

<IsValid>3</IsValid>

<LastUpdated>04/26/2017</LastUpdated>

<Latitude>60.9808</Latitude>

<Longitude>-161.1393</Longitude>

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

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

<Phone>907-543-1903</Phone>

<ProgramType>Affiliate Center</ProgramType>

<ProgramTypeNValue>4294967271</ProgramTypeNValue>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

<VetRepEmail/>

<VeteranRep>No</VeteranRep>

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

<WhyClosed/>

<CenterStatus/>

<WorkersServices>

<Service>

<ServiceNValue>4294967281</ServiceNValue>

<ServiceName>Dealing with a Loss of a Job</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967277</ServiceNValue>

<ServiceName>Finding Work</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967280</ServiceNValue>

<ServiceName>Getting Skills and Education</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967279</ServiceNValue>

<ServiceName>Other Resources</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967278</ServiceNValue>

<ServiceName>Planning your career</ServiceName>

</Service>

</WorkersServices>

<YSContact>No</YSContact>

</YSContactEmail>

<YouthServices/>

<Zip>99559-1607</Zip>

</OneStopCenter>

<OneStopCenter>

<Address1>503 Wood River Road</Address1>

<Address2 >PO Box 1149</Address2 >

<Area>AK</Area>

<BusRepEmail >carol.luckhurst@alaska.gov</BusRepEmail >

<BusinessRep>Yes</BusinessRep>

<BusinessServices>

<Service>

<ServiceNValue>4294967276</ServiceNValue>

<ServiceName>Recruiting Employees</ServiceName>

</Service>

</BusinessServices>

<CenterIsOpen>Y</CenterIsOpen>

<City>Dillingham</City>

<Distance />

<Fax>907-842-5679</Fax>

<GeneralEmail>dillingham_jobcenter@labor.state.ak.us</GeneralEmail>

<ID>44554</ID>

<IsValid>1</IsValid>

<LastUpdated>03/20/2018</LastUpdated>

<Latitude>59.0432</Latitude>

<Longitude>-158.499887</Longitude>

<Name>Bristol Bay Job Center</Name>

<OpenHour>Monda - Friday, 8:00 AM - 4:30 PM</OpenHour>

<Phone>907-842-5579</Phone>

<ProgramType>Affiliate Center</ProgramType>

<ProgramTypeNValue>4294967271</ProgramTypeNValue>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName> 

<VetRepEmail/>

<VeteranRep>No</VeteranRep>

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

<WhyClosed/>

<CenterStatus/>

<WorkersServices>

<Service>

<ServiceNValue>4294967281</ServiceNValue>

<ServiceName>Dealing with a Loss of a Job</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967277</ServiceNValue>

<ServiceName>Finding Work</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967280</ServiceNValue>

<ServiceName>Getting Skills and Education</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967278</ServiceNValue>

<ServiceName>Planning your career</ServiceName>

</Service>

</WorkersServices>

<YSContact>No</YSContact>

<YSContactEmail/>

<YouthServices/>

<Zip>99576-1149</Zip>

</OneStopCenter>

<OneStopCenter>

<Address1>675 Seventh Avenue</Address1>

<Address2 >Station D</Address2 >

<Area>AK</Area>

<BusRepEmail >grace.allers@alaska.gov</BusRepEmail >

<BusinessRep>Yes</BusinessRep>

<BusinessServices>

<Service>

<ServiceNValue>4294967275</ServiceNValue>

<ServiceName>Business Resources</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967276</ServiceNValue>

<ServiceName>Recruiting Employees</ServiceName>

</Service> 

<Service>

<ServiceNValue>4294967262</ServiceNValue>

<ServiceName>Workshops</ServiceName>

</BusinessServices>

<CenterIsOpen>Y</CenterIsOpen>

<City>Fairbanks</City>

<Distance />

<Fax>907-451-2919</Fax>

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

<ID>60227</ID>

<IsValid>1</IsValid>

<LastUpdated>04/11/2018</LastUpdated>

<Latitude>64.840624</Latitude>

<Longitude>-147.724189</Longitude>

<Name>Fairbanks Job Center</Name>

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

<Phone>907-451-5967</Phone>

<ProgramType>Comprehensive Center</ProgramType>

<ProgramTypeNValue>4294967288</ProgramTypeNValue>

<StateAbbr>AK</StateAbbr>

<StateName>Alaska</StateName>

<VetRepEmail/>

<VeteranRep>Yes</VeteranRep>

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

<WhyClosed/>

<CenterStatus/>

<WorkersServices>

<Service>

<ServiceNValue>4294967281</ServiceNValue>

<ServiceName>Dealing with a Loss of a Job</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967277</ServiceNValue>

<ServiceName>Finding Work</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967280</ServiceNValue>

<ServiceName>Getting Skills and Education</ServiceName>

</Service> 

<Service>

<ServiceNValue>4294967279</ServiceNValue>

<ServiceName>Other Resources</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967278</ServiceNValue>

<ServiceName>Planning your career</ServiceName>

</Service>

<Service>

<ServiceNValue>4294967263</ServiceNValue>

<ServiceName>Workshops</ServiceName>

</Service>

</WorkersServices> 

<YSContact>Yes</YSContact>

<YSContactEmail>rene.nordin@alaska.gov<YSContactEmail/>

<YouthServices/>

<Zip>99701</Zip>

</OneStopCenter>
//Ramaining instance of AJCs have been snipped, leaving just a sample

Response Parameters

Name
Description
Type
ID
ID
String
Name
Name
String
Address1
Address 1
String
Address2
Address 2
String
City
City
String
StateAbbr
State Abbreviation
String
StateName
State Name
String
Zip
Zip
String
Phone
Phone
String
Distance
Distance
String
ProgramType
Program Type
String
ProgramTypeNValue
Program Type N Value, useful if you want to filter a subsequent search by center type
String
OpenHour
Open Hours
String
CenterIsOpen
Center is Open
String
VeteranRep
Veteran Representative
String
BusinessRep
Business Representative
String
GeneralEmail
General Email
String
VetRepEmail
Veteran Representative Email
String
BusRepEmail
Business Representative Email
String
YSContact
Youth Service Contact
String
YSContactEmail
Youth Service Contact Email
String
LastUpdated
Last Updated
String
WhyClosed
Obsolete parameter, present only for backward compatibility. Do not use this going forward
String
CenterStatus
Message about the current status of the center. If center is closed, this might be the reason for closure. Centers can use this to convey a wide variety of information.
String
Latitude
Latitude
Number
Longitude
Longitude
Number
WebSiteUrl
Web Site URL
String
Fax
Fax
String
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
Area
Area
String
YouthServices
Youth Services
String
ServiceName
Service Name
String
ServiceNValue
Service "N Value", necessary if you want to filter a subsequent query
String
BusinessServices
Business Services
String
ServiceName
Service Name
String
ServiceNValue
Service "N Value", necessary if you want to filter a subsequent query
String
WorkerServices
Worker Services
String
ServiceName
Service Name
String
ServiceNValue
Service "N Value", necessary if you want to filter a subsequent query
String
RecordCount
Record Count
Number
AreaValidationErr
Area Validation Error
String
ContainsDuplicate
Contains Duplicate
String
AreaRecordCountList
Area Record Count List    
Object
Item
Item
String
Count
Count
Number
Value
Value
String
CenterTypeCountList
Center Type Count List
Object
UndoList
Undo List
Object
Item
Item
String
Count
Count
Number
Value
Value
String
FilterList
Filter List
Object
Item
Item
String
Count
Count
Number
Value
Value
String
BusinessServicesList
Business Services List
Object
UndoList
Undo List
Object
Item
Item
String
Count
Count
Number
Value
Value
String
FilterList
Filter List
Object
Item
Item
String
Count
Count
Number
Value
Value
String
WorkersServicesList
Workers Services List
Object
UndoList
Undo List
Object
Item
Item
String
Count
Count
Number
Value
Value
String
FilterList
Filter List
Object
Item
Item
String
Count
Count
Number
Value
Value
String
YouthServicesList
Youth Services List
Object
UndoList
Undo List
Object
Item
Item
String
Count
Count
Number
Value
Value
String
FilterList
Filter List
Object
Item
Item
String
Count
Count
Number
Value
Value
String

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.