USAJOBS API
Overview
USAJOBS is the official US federal government job portal, and its API provides programmatic access to thousands of government job listings. Developers can search openings by keyword, location, agency, and pay grade to build specialized job search tools. Authentication uses an API key passed in the request header alongside your registered email address.
Beginner Tip
USAJOBS requires both your API key and the email address used during registration as request headers—omitting either will result in a 401 error. Register at developer.usajobs.gov to get your credentials before making any calls.
Available Data
Example Response
{
"title": "Software Engineer",
"company": "Tech Corp",
"location": "Remote",
"salary_range": "$120,000 - $180,000",
"posted_date": "2025-01-10",
"description": "We are looking for an experienced..."
} Field Reference
SearchResult.SearchResultItems List of job announcement objects matching the search criteria. MatchedObjectDescriptor.PositionTitle Official job title of the federal position. MatchedObjectDescriptor.DepartmentName Name of the federal department or agency posting the job. MatchedObjectDescriptor.PositionLocationDisplay Human-readable location of the position. MatchedObjectDescriptor.PositionRemuneration Salary range details including minimum and maximum annual pay. MatchedObjectDescriptor.ApplicationCloseDate Date and time when the application window closes in ISO 8601 format. Implementation Example
const url = "https://developer.usajobs.gov/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Adzuna
⭐ Beginner's PickAdzuna is a job board aggregator API that lets you search millions of job listings from across the web in one place.
Careerjet
Careerjet is a global job search engine API that aggregates listings from thousands of job sites and company career pages worldwide.
Findwork
⭐ Beginner's PickFindwork is a job board API focused on developer and tech roles, aggregating listings from top tech companies and startups.
Jobs2Careers
Jobs2Careers is a job aggregator API that collects listings from thousands of job boards and employer sites across the US and beyond.
Jooble
⭐ Beginner's PickJooble is a large international job search engine API that aggregates listings from over 140,000 sources worldwide.