Banner: Web API: Get AJC details by ID

Web API: Get AJC details by ID

Get AJC details by id

The 'Get AJCs Details by ID' Web API enables developers to query and retrieve information on a specific American Job Centers by providing a Job center ID. You will get IDs by using the complement service 'List AJCs by Location'.

About this data

This web service is used on www.CareerOneStop.org to Find an American Job Center's details. Nearly 2,400 American Job Centers (AJCs) nationwide help people search for jobs, find training, and answer other employment related questions. You can see the American Job Center Finder here. Find out how an American Job Center can help you by clicking here for more information on this tool and the associated data. 

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}/{jobCenterId}

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}/{jobCenterId}"

            };

           

            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}/{jobCenterId}") 

        .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
jobCenterID
String
Yes
This value is the unique ID for the job center. It can be obtained from the job center search API.

Response Structure

{ 

  "OneStopCentersInfo": { 

    "OneStopCenterInfo": [ 

      { 

        "Name": "Name of Center", 

        "Value": "Virginia Employment Commission- Richmond Office" 

      }, 

      { 

        "Name": "ADDRESS_1", 

        "Value": "121 Cedar Fork Rd" 

      }, 

      { 

        "Name": "ADDRESS_2", 

        "Value": "" 

      }, 

      { 

        "Name": "CITY", 

        "Value": "Henrico" 

      }, 

      { 

        "Name": "STATE", 

        "Value": "VA" 

      }, 

      { 

        "Name": "ZIP", 

        "Value": "23223" 

      }, 

      { 

        "Name": "Phone", 

        "Value": "804-952-6116" 

      }, 

      { 

        "Name": "Fax", 

        "Value": "804-222-7489" 

      }, 

      { 

        "Name": "Hours of Operation", 

        "Value": "Mon, Tue, Wed 8am-4pm; Thur 8am-5pm; Fri 8am-2pm" 

      }, 

      { 

        "Name": "TDD/TTY", 

        "Value": "" 

      }, 

      { 

        "Name": "Web Site Address", 

        "Value": "http://www.vec.virginia.gov/virginia-workforce-connection" 

      }, 

      { 

        "Name": "Brief Description of Services Provided at this Site (Narrative)", 

        "Value": "Veterans reps, employment reps, phones, free internet & resume writer access computes are on site. Representatives are available with an appointment. Full range of jobseeker and employer services. Comprehensive WIOA services. Employment Service & Unemployment Insurance" 

      } 

    ], 

    "OneStopCenterGenInfo": [ 

      { 

        "Name": "E-mail Address", 

        "Value": "richmond@vec.virginia.gov" 

      }, 

      { 

        "Name": "Type of Office", 

        "Value": "Comprehensive One-Stop Career Centers" 

      }, 

      { 

        "Name": "Office Level", 

        "Value": "Local" 

      }, 

      { 

        "Name": "Center Temporarily Closed", 

        "Value": "No" 

      },  

      { 

        "Name": "Center Status", 

        "Value": "" 

      }, 

      { 

        "Name": "Veterans Employment Representative", 

        "Value": "Yes" 

      }, 

      { 

        "Name": "Veterans Representative #1 Phone", 

        "Value": "804-559-7145" 

      }, 

      { 

        "Name": "Veterans Rep. #1 E-mail Address", 

        "Value": "dawn.murphy@vec.virginia.gov" 

      }, 

      { 

        "Name": "Veterans Representative #2 Phone", 

        "Value": "804-952-6137" 

      }, 

      { 

        "Name": "Veterans Rep. #2 E-mail Address", 

        "Value": "gilbert.paiz@vec.virginia.gov" 

      }, 

      { 

        "Name": "Business Representative Name", 

        "Value": "" 

      }, 

      { 

        "Name": "Business Representative Email", 

        "Value": "" 

      }, 

      { 

        "Name": "Business Representative Phone", 

        "Value": "" 

      }, 

      { 

        "Name": "Parking Availability", 

        "Value": "Yes" 

      }, 

      { 

        "Name": "Public Transit Access", 

        "Value": "No" 

      }, 

      { 

        "Name": "Language  Capability", 

        "Value": "" 

      }, 

      { 

        "Name": "UI Filing Assistance by Phone Available", 

        "Value": "Yes" 

      }, 

      { 

        "Name": "UI Filing Assistance Online Available", 

        "Value": "Yes" 

      }, 

      { 

        "Name": "UI Filing Assistance from Staff Available", 

        "Value": "Yes" 

      } 

    ] 

  }, 

  "OneStopCenterCategoriesInfo": { 

    "SiteResource": [ 

      { 

        "Name": "Career Resource Room", 

        "Value": "Yes" 

      }, 

      { 

        "Name": "Telephones", 

        "Value": "Yes" 

      }, 

      { 

        "Name": "Fax Machines", 

        "Value": "Yes" 

      }, 

      { 

        "Name": "Copy Machine", 

        "Value": "Yes" 

      }, 

      { 

        "Name": "Personal Computers", 

        "Value": "Yes" 

      }, 

      { 

        "Name": "Internet Access", 

        "Value": "Yes" 

      }, 

      { 

        "Name": "Video Viewing Stations", 

        "Value": "Yes" 

      }, 

      { 

        "Name": "Rooms where employers can interview job seekers", 

        "Value": "Yes" 

      }, 

      { 

        "Name": "On-site Childcare", 

        "Value": "No" 

      } 

    ], 

    "YouthServices": { 

      "FindingWork": [ 

        { 

          "Name": "Find out how to get a work permit", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Learn about strategies for finding a job", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Get help in preparing for job interviews", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Get help preparing your resume", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Find out about job openings (including work experience, internships and community service)", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Post your resume for employers to see", 

          "Value": "Yes" 

        } 

      ], 

      "SummerOpportunities": [ 

        { 

          "Name": "Get help in finding a summer job", 

          "Value": "No" 

        }, 

        { 

          "Name": "Find out about summer learning opportunities", 

          "Value": "No" 

        } 

      ], 

      "GettingSkillsAndTraining": [ 

        { 

          "Name": "Learn new job skills", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Prepare for a high school equivalency (HSE) exam", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Improve your reading, writing and math skills", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Improve your English skills (ESL)", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Learn about the world of business", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Improve your current job skills", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Get information about schools and training programs", 

          "Value": "Yes" 

        } 

      ], 

      "OtherResources": [ 

        { 

          "Name": "Get help finding child care", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Get help with living expenses while in training", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Learn about financial aid for training", 

          "Value": "Yes" 

        } 

      ], 

      "PlanningYourCareer": [ 

        { 

          "Name": "Get information about employers in your local area", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Learn about what employers expect of their workers", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Assess your career interests", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Learn about jobs and careers suitable for you", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Learn about jobs in demand and rates of pay", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Assess your reading and math skills", 

          "Value": "Yes" 

        } 

      ] 

    }, 

    "WorkersServices": { 

      "DealingLossJob": [ 

        { 

          "Name": "File Unemployment Insurance (UI) Claim", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Get help coping financially with job loss", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Learn about community resources", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Get help in coping with the stress of job loss", 

          "Value": "Yes" 

        } 

      ], 

      "GettingSkillsAndEducation": [ 

        { 

          "Name": "Improve your reading writing and math skills", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Improve your English skills (ESL)", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Learn how to start your own business", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Improve your current job skills", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Prepare for a high school equivalency (HSE) exam", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Get information about education and training schools, such as their tuition and success in placing students in jobs", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Receive training in new job skills", 

          "Value": "Yes" 

        } 

      ], 

      "OtherResources": [ 

        { 

          "Name": "Get help obtaining financial aid for training", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Get help finding childcare", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Get help with living expenses while in training", 

          "Value": "Yes" 

        } 

      ], 

      "PlanningYourCareer": [ 

        { 

          "Name": "Learn about jobs in demand and rates of pay", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Assess your career interests and skills", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Assess your reading and math skills", 

          "Value": "No" 

        }, 

        { 

          "Name": "Get information about employers in your local area", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Learn about jobs and careers suitable for you", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Learn about what employers expect of their workers", 

          "Value": "Yes" 

        } 

      ], 

      "FindingWork": [ 

        { 

          "Name": "Get help in preparing for job interviews", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Learn about strategies for finding a job", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Find out about job openings", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Get help preparing your resume", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Share job-search strategies with other job seekers (job club)", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Post your resume for employers to see", 

          "Value": "Yes" 

        } 

      ] 

    }, 

    "BusinessServices": { 

      "RecruitingEmployees": [ 

        { 

          "Name": "Post your job openings", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Get access to resumes posted by job applicants", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Get training costs reimbursed for qualified job candidates", 

          "Value": "No" 

        }, 

        { 

          "Name": "Develop programs to train new workers for your business", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Get help in analyzing and writing job descriptions", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Learn how to interview job applicants effectively", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Learn about strategies for recruiting workers", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Have background checks conducted on job applicants", 

          "Value": "No" 

        }, 

        { 

          "Name": "Have job applicants` skills tested", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Use on-site facilities for recruiting and interviewing job applicants", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Get job applicants pre-screened", 

          "Value": "Yes" 

        } 

      ], 

      "BusinessResources": [ 

        { 

          "Name": "Learn about EEO and ADA requirements", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Get information on employment, wage and salary trends", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Receive information on the Work Opportunity Tax Credit and other hiring incentives", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Get your employee training needs analyzed", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Get outplacement services for employees you are laying off", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Learn about legal requirements for hiring and firing workers", 

          "Value": "Yes" 

        }, 

        { 

          "Name": "Learn about Unemployment Insurance taxes and eligibility rules", 

          "Value": "Yes" 

        } 

      ] 

    } 

  }, 

  "AJCServicesContacts": { 

    "YouthServiceContacts": [ 

      { 

        "Name": "Contact Name", 

        "Value": "Charymayne Wyche" 

      }, 

      { 

        "Name": "Contact Email", 

        "Value": "cwyche@rossprov.com" 

      }, 

      { 

        "Name": "Contact Phone", 

        "Value": "804-952-6121" 

      } 

    ] 

  } 

}
<OneStopCenterDetails 

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

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

<AJCServicesContacts> 

<YouthServiceContacts> 

<NameValue> 

<Name>Contact Name</Name> 

<Value>Charymayne Wyche</Value> 

</NameValue> 

<NameValue> 

<Name>Contact Email</Name> 

<Value>cwyche@rossprov.com</Value> 

</NameValue> 

<NameValue> 

<Name>Contact Phone</Name> 

<Value>804-952-6121</Value> 

</NameValue> 

</YouthServiceContacts> 

</AJCServicesContacts> 

<OneStopCenterCategoriesInfo> 

<BusinessServices> 

<BusinessResources> 

<NameValue> 

<Name>Learn about EEO and ADA requirements</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Get information on employment, wage and salary trends</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Receive information on the Work Opportunity Tax Credit and other hiring incentives</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Get your employee training needs analyzed</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Get outplacement services for employees you are laying off</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Learn about legal requirements for hiring and firing workers</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Learn about Unemployment Insurance taxes and eligibility rules</Name> 

<Value>Yes</Value> 

</NameValue> 

</BusinessResources> 

<RecruitingEmployees> 

<NameValue> 

<Name>Post your job openings</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Get access to resumes posted by job applicants</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Get training costs reimbursed for qualified job candidates</Name> 

<Value>No</Value> 

</NameValue> 

<NameValue> 

<Name>Develop programs to train new workers for your business</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Get help in analyzing and writing job descriptions</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Learn how to interview job applicants effectively</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Learn about strategies for recruiting workers</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Have background checks conducted on job applicants</Name> 

<Value>No</Value> 

</NameValue> 

<NameValue> 

<Name>Have job applicants` skills tested</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Use on-site facilities for recruiting and interviewing job applicants</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Get job applicants pre-screened</Name> 

<Value>Yes</Value> 

</NameValue> 

</RecruitingEmployees> 

</BusinessServices> 

<SiteResource> 

<NameValue> 

<Name>Career Resource Room</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Telephones</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Fax Machines</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Copy Machine</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Personal Computers</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Internet Access</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Video Viewing Stations</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Rooms where employers can interview job seekers</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>On-site Childcare</Name> 

<Value>No</Value> 

</NameValue> 

</SiteResource> 

<WorkersServices> 

<DealingLossJob> 

<NameValue> 

<Name>File Unemployment Insurance (UI) Claim</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Get help coping financially with job loss</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Learn about community resources</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Get help in coping with the stress of job loss</Name> 

<Value>Yes</Value> 

</NameValue> 

</DealingLossJob> 

<FindingWork> 

<NameValue> 

<Name>Get help in preparing for job interviews</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Learn about strategies for finding a job</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Find out about job openings</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Get help preparing your resume</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Share job-search strategies with other job seekers (job club)</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Post your resume for employers to see</Name> 

<Value>Yes</Value> 

</NameValue> 

</FindingWork> 

<GettingSkillsAndEducation> 

<NameValue> 

<Name>Improve your reading writing and math skills</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Improve your English skills (ESL)</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Learn how to start your own business</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Improve your current job skills</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Prepare for a high school equivalency (HSE) exam</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Get information about education and training schools, such as their tuition and success in placing students in jobs</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Receive training in new job skills</Name> 

<Value>Yes</Value> 

</NameValue> 

</GettingSkillsAndEducation> 

<OtherResources> 

<NameValue> 

<Name>Get help obtaining financial aid for training</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Get help finding childcare</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Get help with living expenses while in training</Name> 

<Value>Yes</Value> 

</NameValue> 

</OtherResources> 

<PlanningYourCareer> 

<NameValue> 

<Name>Learn about jobs in demand and rates of pay</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Assess your career interests and skills</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Assess your reading and math skills</Name> 

<Value>No</Value> 

</NameValue> 

<NameValue> 

<Name>Get information about employers in your local area</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Learn about jobs and careers suitable for you</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Learn about what employers expect of their workers</Name> 

<Value>Yes</Value> 

</NameValue> 

</PlanningYourCareer> 

</WorkersServices> 

<YouthServices> 

<FindingWork> 

<NameValue> 

<Name>Find out how to get a work permit</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Learn about strategies for finding a job</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Get help in preparing for job interviews</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Get help preparing your resume</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Find out about job openings (including work experience, internships and community service)</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Post your resume for employers to see</Name> 

<Value>Yes</Value> 

</NameValue> 

</FindingWork> 

<GettingSkillsAndTraining> 

<NameValue> 

<Name>Learn new job skills</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Prepare for a high school equivalency (HSE) exam</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Improve your reading, writing and math skills</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Improve your English skills (ESL)</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Learn about the world of business</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Improve your current job skills</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Get information about schools and training programs</Name> 

<Value>Yes</Value> 

</NameValue> 

</GettingSkillsAndTraining> 

<OtherResources> 

<NameValue> 

<Name>Get help finding child care</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Get help with living expenses while in training</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Learn about financial aid for training</Name> 

<Value>Yes</Value> 

</NameValue> 

</OtherResources> 

<PlanningYourCareer> 

<NameValue> 

<Name>Get information about employers in your local area</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Learn about what employers expect of their workers</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Assess your career interests</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Learn about jobs and careers suitable for you</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Learn about jobs in demand and rates of pay</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Assess your reading and math skills</Name> 

<Value>Yes</Value> 

</NameValue> 

</PlanningYourCareer> 

<SummerOpportunities> 

<NameValue> 

<Name>Get help in finding a summer job</Name> 

<Value>No</Value> 

</NameValue> 

<NameValue> 

<Name>Find out about summer learning opportunities</Name> 

<Value>No</Value> 

</NameValue> 

</SummerOpportunities> 

</YouthServices> 

</OneStopCenterCategoriesInfo> 

<OneStopCentersInfo> 

<OneStopCenterGenInfo> 

<NameValue> 

<Name>E-mail Address</Name> 

<Value>richmond@vec.virginia.gov</Value> 

</NameValue> 

<NameValue> 

<Name>Type of Office</Name> 

<Value>Comprehensive One-Stop Career Centers</Value> 

</NameValue> 

<NameValue> 

<Name>Office Level</Name> 

<Value>Local</Value> 

</NameValue> 

<NameValue> 

<Name>Center Temporarily Closed</Name> 

<Value>No</Value> 

</NameValue> 

<NameValue> 

<Name>Center Status</Name> 

<Value /> 

</NameValue> 

<NameValue> 

<Name>Veterans Employment Representative</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Veterans Representative #1 Phone</Name> 

<Value>804-559-7145</Value> 

</NameValue> 

<NameValue> 

<Name>Veterans Rep. #1 E-mail Address</Name> 

<Value>dawn.murphy@vec.virginia.gov</Value> 

</NameValue> 

<NameValue> 

<Name>Veterans Representative #2 Phone</Name> 

<Value>804-952-6137</Value> 

</NameValue> 

<NameValue> 

<Name>Veterans Rep. #2 E-mail Address</Name> 

<Value>gilbert.paiz@vec.virginia.gov</Value> 

</NameValue> 

<NameValue> 

<Name>Business Representative Name</Name> 

<Value /> 

</NameValue> 

<NameValue> 

<Name>Business Representative Email</Name> 

<Value /> 

</NameValue> 

<NameValue> 

<Name>Business Representative Phone</Name> 

<Value /> 

</NameValue> 

<NameValue> 

<Name>Parking Availability</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>Public Transit Access</Name> 

<Value>No</Value> 

</NameValue> 

<NameValue> 

<Name>Language Capability</Name> 

<Value /> 

</NameValue> 

<NameValue> 

<Name>UI Filing Assistance by Phone Available</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>UI Filing Assistance Online Available</Name> 

<Value>Yes</Value> 

</NameValue> 

<NameValue> 

<Name>UI Filing Assistance from Staff Available</Name> 

<Value>Yes</Value> 

</NameValue> 

</OneStopCenterGenInfo> 

<OneStopCenterInfo> 

<NameValue> 

<Name>Name of Center</Name> 

<Value>Virginia Employment Commission- Richmond Office</Value> 

</NameValue> 

<NameValue> 

<Name>ADDRESS_1</Name> 

<Value>121 Cedar Fork Rd</Value> 

</NameValue> 

<NameValue> 

<Name>ADDRESS_2</Name> 

<Value /> 

</NameValue> 

<NameValue> 

<Name>CITY</Name> 

<Value>Henrico</Value> 

</NameValue> 

<NameValue> 

<Name>STATE</Name> 

<Value>VA</Value> 

</NameValue> 

<NameValue> 

<Name>ZIP</Name> 

<Value>23223</Value> 

</NameValue> 

<NameValue> 

<Name>Phone</Name> 

<Value>804-952-6116</Value> 

</NameValue> 

<NameValue> 

<Name>Fax</Name> 

<Value>804-222-7489</Value> 

</NameValue> 

<NameValue> 

<Name>Hours of Operation</Name> 

<Value>Mon, Tue, Wed 8am-4pm; Thur 8am-5pm; Fri 8am-2pm</Value> 

</NameValue> 

<NameValue> 

<Name>TDD/TTY</Name> 

<Value /> 

</NameValue> 

<NameValue> 

<Name>Web Site Address</Name> 

<Value>http://www.vec.virginia.gov/virginia-workforce-connection</Value> 

</NameValue> 

<NameValue> 

<Name>Brief Description of Services Provided at this Site (Narrative)</Name> 

<Value>Veterans reps, employment reps, phones, free internet &amp;amp;amp; resume writer access computes are on site. Representatives are available with an appointment. Full range of jobseeker and employer services. Comprehensive WIOA services. Employment Service &amp;amp;amp; Unemployment Insurance</Value> 

</NameValue> 

</OneStopCenterInfo> 

</OneStopCentersInfo> 

</OneStopCenterDetails>

Response Parameters

Name
Description 
Type
Parent
OneStopCenterInfo
One Stop Centers Information
Object
Empty Cell
Name
Name
String
One Stop Center Info
Value
Value
String
One Stop Center Info
OneStopCenterGenInfo
One stop Center General Information
Object
Empty Cell
Name
Name
String
One Stop Center Gen Info
Value
Value
String
One Stop Center Gen Info
OneStopCenterCategoriesInfo
One Stop Center Categories Information
Object
Empty Cell
SiteResource
Site Resource
Object
One Stop Center Categories Info
Name
Name
String
Site Resource
Value
Value
String
Site Resource
YouthServices
Youth Services
Object
Empty Cell
FindingWork
Finding Work
Object
Youth Services
Name
Name
String
Finding Work
Value
Value
String
Finding Work
SummerOpportunities
Summer Opportunities
Object
Empty Cell
Name
Name
String
Summer Opportunities
Value
Value
String
Summer Opportunities
GettingSkillsAndTraining
Getting Skills and Training
Object
Empty Cell
Name
Name
String
Getting Skills And Training
Value
Value
String
Getting Skills And Training
OtherResources
Other Resources
Object
Empty Cell
Name
Name
String
Other Resources
Value
Value
String
Other Resources
PlanningYourCareer
Planning Your Career
Object
Empty Cell
Name
Name
String
Planning Your Career
Value
Value
String
Planning Your Career
WorkersService
Workers Services
Object
Empty Cell
DealingLossJob
Dealing with the Loss of a Job
Object
Workers Service
Name
Name
String
Dealing Loss Job
Value
Value
String
Dealing Loss Job
GettingSkillsAndEducation
Getting Skills and Education
Object
Empty Cell
Name
Name
String
Getting Skills And Education
Value
Value
String
Getting Skills And Education
OtherResources
Other Resources
Object
Empty Cell
Name
Name
String
Other Resources
Value
Value
String
Other Resources
PlanningYourCareer
Planning Your Career
Object
Empty Cell
Name
Name
String
Planning Your Career
Value
Value
String
Planning Your Career
FindingWork
Finding Work
Object
Empty Cell
Name
Name
String
Finding Work
Value
Value
String
Finding Work
BusinessServices
Business Services
Object
Empty Cell
RecruitingEmployees
Recruiting Employees
Object
Business Services
Name
Name
String
Recruiting Employees
Value
Value
String
String
BusinessResources
Business Resources
Object
Empty Cell
Name
Name
String
Business Resources
Value
Value
String
Business Resources
AJCServicesContacts
AJC Service Contacts
Object
Empty Cell
YouthServiceContacts
Youth Service Contacts
Object
AJC Services Contacts
Name
Name
String
Youth Service Contacts
Value
Value
String
Youth Service Contacts

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.