Jobs ReportJobs Report API

OnlineCredit Usage:1 per callRefreshed 2 weeks ago
avg: 500ms|p50: 467ms|p75: 522ms|p90: 588ms|p99: 720ms

Overview

To use Jobs Report, you need an API key. You can get one by creating a free account and visiting your dashboard.

GET Endpoint

URL
https://api.apiverve.com/v1/jobsreport

Example

How to call the Jobs Report API in different programming languages.

cURL Request
curl -X GET \
  "https://api.apiverve.com/v1/jobsreport?date=2023-06" \
  -H "X-API-Key: your_api_key_here"
JavaScript (Fetch API)
const response = await fetch('https://api.apiverve.com/v1/jobsreport?date=2023-06', {
  method: 'GET',
  headers: {
    'X-API-Key': 'your_api_key_here',
    'Content-Type': 'application/json'
  }
});

const data = await response.json();
console.log(data);
Python (Requests)
import requests

headers = {
    'X-API-Key': 'your_api_key_here',
    'Content-Type': 'application/json'
}

response = requests.get('https://api.apiverve.com/v1/jobsreport?date=2023-06', headers=headers)

data = response.json()
print(data)
Go (net/http)
package main

import (
    "fmt"
    "io"
    "net/http"

)

func main() {
    req, _ := http.NewRequest("GET", "https://api.apiverve.com/v1/jobsreport?date=2023-06", nil)

    req.Header.Set("X-API-Key", "your_api_key_here")
    req.Header.Set("Content-Type", "application/json")

    client := &http.Client{}
    resp, err := client.Do(req)
    if err != nil {
        panic(err)
    }
    defer resp.Body.Close()

    body, _ := io.ReadAll(resp.Body)
    fmt.Println(string(body))
}
Example Response
{
  "status": "ok",
  "error": null,
  "data": {
    "yearMonth": "2024-01",
    "year": 2024,
    "month": 1,
    "jobsChangeDirection": "growth",
    "summary": {
      "unemploymentRate": 3.7,
      "laborForceParticipation": 62.5,
      "totalEmployed": 161152000,
      "totalUnemployed": 6124000,
      "laborForce": 167276000,
      "jobsChange": 353000
    },
    "nonfarmPayrolls": {
      "total": 157245000,
      "private": 133567000
    },
    "bySector": {
      "mining": 645000,
      "construction": 8123000,
      "manufacturing": 12987000,
      "tradeTransportUtilities": 29456000,
      "information": 2987000,
      "financialActivities": 9234000,
      "professionalBusiness": 22876000,
      "educationHealth": 25678000,
      "leisureHospitality": 16789000,
      "otherServices": 5892000,
      "government": 23678000
    },
    "topSector": "Trade, Transport & Utilities",
    "formatted": {
      "totalEmployed": "161.15M",
      "totalUnemployed": "6.12M",
      "laborForce": "167.28M",
      "jobsChange": "+353.0K",
      "nonfarmPayrolls": "157.25M"
    }
  }
}

Authentication

The Jobs Report API requires authentication via API key. Include your API key in the request header:

Required Header
X-API-Key: your_api_key_here

Learn more about authentication →

Interactive API Playground

Test the Jobs Report API directly in your browser with live requests and responses.

Parameters

The following parameters are available for the Jobs Report API:

Some Jobs Report parameters marked with Premium are available exclusively on paid plans.View pricing

Get Jobs Report

ParameterTypeRequiredDescriptionDefaultExample
datePremiumstringoptional
Optional date in YYYY-MM format for historical lookup. Omit for current data.
Format: date (e.g., 2023-06)
-2023-06

Response

The Jobs Report API returns responses in JSON, XML, YAML, and CSV formats. The JSON response is shown in the Example section above; alternative formats below.

Other Response Formats

XML Response
200 OK
<?xml version="1.0" encoding="UTF-8"?>
<response>
  <status>ok</status>
  <error xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
  <data>
    <yearMonth>2024-01</yearMonth>
    <year>2024</year>
    <month>1</month>
    <jobsChangeDirection>growth</jobsChangeDirection>
    <summary>
      <unemploymentRate>3.7</unemploymentRate>
      <laborForceParticipation>62.5</laborForceParticipation>
      <totalEmployed>161152000</totalEmployed>
      <totalUnemployed>6124000</totalUnemployed>
      <laborForce>167276000</laborForce>
      <jobsChange>353000</jobsChange>
    </summary>
    <nonfarmPayrolls>
      <total>157245000</total>
      <private>133567000</private>
    </nonfarmPayrolls>
    <bySector>
      <mining>645000</mining>
      <construction>8123000</construction>
      <manufacturing>12987000</manufacturing>
      <tradeTransportUtilities>29456000</tradeTransportUtilities>
      <information>2987000</information>
      <financialActivities>9234000</financialActivities>
      <professionalBusiness>22876000</professionalBusiness>
      <educationHealth>25678000</educationHealth>
      <leisureHospitality>16789000</leisureHospitality>
      <otherServices>5892000</otherServices>
      <government>23678000</government>
    </bySector>
    <topSector>Trade, Transport &amp; Utilities</topSector>
    <formatted>
      <totalEmployed>161.15M</totalEmployed>
      <totalUnemployed>6.12M</totalUnemployed>
      <laborForce>167.28M</laborForce>
      <jobsChange>+353.0K</jobsChange>
      <nonfarmPayrolls>157.25M</nonfarmPayrolls>
    </formatted>
  </data>
</response>
YAML Response
200 OK
status: ok
error: null
data:
  yearMonth: 2024-01
  year: 2024
  month: 1
  jobsChangeDirection: growth
  summary:
    unemploymentRate: 3.7
    laborForceParticipation: 62.5
    totalEmployed: 161152000
    totalUnemployed: 6124000
    laborForce: 167276000
    jobsChange: 353000
  nonfarmPayrolls:
    total: 157245000
    private: 133567000
  bySector:
    mining: 645000
    construction: 8123000
    manufacturing: 12987000
    tradeTransportUtilities: 29456000
    information: 2987000
    financialActivities: 9234000
    professionalBusiness: 22876000
    educationHealth: 25678000
    leisureHospitality: 16789000
    otherServices: 5892000
    government: 23678000
  topSector: Trade, Transport & Utilities
  formatted:
    totalEmployed: 161.15M
    totalUnemployed: 6.12M
    laborForce: 167.28M
    jobsChange: +353.0K
    nonfarmPayrolls: 157.25M
CSV Response
200 OK
keyvalue
yearMonth2024-01
year2024
month1
jobsChangeDirectiongrowth
summary{unemploymentRate:3.7,laborForceParticipation:62.5,totalEmployed:161152000,totalUnemployed:6124000,laborForce:167276000,jobsChange:353000}
nonfarmPayrolls{total:157245000,private:133567000}
bySector{mining:645000,construction:8123000,manufacturing:12987000,tradeTransportUtilities:29456000,information:2987000,financialActivities:9234000,professionalBusiness:22876000,educationHealth:25678000,leisureHospitality:16789000,otherServices:5892000,government:23678000}
topSectorTrade, Transport & Utilities
formatted{totalEmployed:161.15M,totalUnemployed:6.12M,laborForce:167.28M,jobsChange:+353.0K,nonfarmPayrolls:157.25M}

Response Structure

All API responses follow a consistent structure with the following fields:

FieldTypeDescriptionExample
statusstringIndicates whether the request was successful ("ok") or failed ("error")ok
errorstring | nullContains error message if status is "error", otherwise nullnull
dataobject | nullContains the API response data if successful, otherwise null{...}

Learn more about response formats →

Response Data Fields

When the request is successful, the data object contains the following fields:

Response fields marked with Premium are available exclusively on paid plans.View pricing
FieldTypeSample ValueDescription
yearMonthstring"2024-01"
Report date in YYYY-MM format (e.g. 2024-01)
yearnumber2024
Year of the employment report
monthnumber1
Month of the employment report (1-12)
jobsChangeDirectionstring"growth"
Direction of job change: 'growth', 'decline', or 'unchanged'
summaryobject{...}
-
â”” unemploymentRatenumber3.7
National unemployment rate as percentage
â”” laborForceParticipationnumber62.5
Labor force participation rate as percentage
â”” totalEmployedPremiumnumber161152000
Total number of employed persons in millions
â”” totalUnemployedPremiumnumber6124000
Total number of unemployed persons in millions
â”” laborForcePremiumnumber167276000
Total labor force size in millions
â”” jobsChangenumber353000
Change in jobs for the month in thousands
nonfarmPayrollsobject{...}
-
â”” totalPremiumnumber157245000
Total nonfarm payroll employment in millions
â”” privatePremiumnumber133567000
Private nonfarm payroll employment in millions
bySectorobject{...}
-
â”” miningPremiumnumber645000
Mining sector employment in thousands
â”” constructionPremiumnumber8123000
Construction sector employment in thousands
â”” manufacturingPremiumnumber12987000
Manufacturing sector employment in thousands
â”” tradeTransportUtilitiesPremiumnumber29456000
Trade, Transport & Utilities sector employment
â”” informationPremiumnumber2987000
Information sector employment in thousands

Headers

Only X-API-Key is required. Optional headers include Accept for response format negotiation (JSON, XML, or YAML), User-Agent, and X-Request-ID for request tracing. See all request headers →

GraphQL AccessALPHA

Access Jobs Report through GraphQL to combine it with other API calls in a single request. Query only the jobs report data you need with precise field selection, and orchestrate complex data fetching workflows.

Test Jobs Report in the GraphQL Explorer to confirm availability and experiment with queries.

Credit Cost: Each API called in your GraphQL query consumes its standard credit cost.

GraphQL Endpoint
POST https://api.apiverve.com/v1/graphql
GraphQL Query Example
query {
  jobsreport(
    input: {
      date: "2023-06"
    }
  ) {
    yearMonth
    year
    month
    jobsChangeDirection
    summary {
      unemploymentRate
      laborForceParticipation
      totalEmployed
      totalUnemployed
      laborForce
      jobsChange
    }
    nonfarmPayrolls {
      total
      private
    }
    bySector {
      mining
      construction
      manufacturing
      tradeTransportUtilities
      information
      financialActivities
      professionalBusiness
      educationHealth
      leisureHospitality
      otherServices
      government
    }
    topSector
    formatted {
      totalEmployed
      totalUnemployed
      laborForce
      jobsChange
      nonfarmPayrolls
    }
  }
}

Note: Authentication is handled via the x-api-key header in your GraphQL request, not as a query parameter.

CORS Support

The Jobs Report API accepts cross-origin requests from any origin, so it can be called directly from browser-based applications without a proxy. See CORS support →

Rate Limiting

Jobs Report requests are throttled per minute on the Free plan and unthrottled on paid plans. Exceeding the limit returns 429 Too Many Requests; rate-limit usage is reported in the X-RateLimit-Limit, X-RateLimit-Remaining, and X-RateLimit-Reset response headers. See per-plan limits and best practices →

Error Codes

The Jobs Report API uses standard HTTP status codes — 200 on success, 400 for invalid parameters, 401 for missing or invalid keys, 403 for insufficient credits, 429 for rate-limit exhaustion, and 500/503 for server-side issues. Each error response includes an X-Request-ID header you can quote when contacting support. See full error handling guide →

SDKs for Jobs Report

Official Jobs Report packages on npm, PyPI, NuGet, and JitPack — plus a Postman collection and an OpenAPI spec. See the SDK guide →

No-Code Integrations

Jobs Report works with Zapier, Make, Pipedream, n8n, and Power Automate using the same API key. See setup guides →

Frequently Asked Questions

How do I get an API key for Jobs Report?
Sign up for a free account at dashboard.apiverve.com. Your API key will be automatically generated and available in your dashboard. The same key works for Jobs Report and all other APIVerve APIs. The free plan includes 1,000 credits plus a 500 credit bonus.
How many credits does Jobs Report cost?

Each successful Jobs Report API call consumes credits based on plan tier. Check the pricing section above for the exact credit cost. Failed requests and errors don't consume credits, so you only pay for successful jobs report lookups.

Can I use Jobs Report in production?

The free plan is for testing and development only. For production use of Jobs Report, upgrade to a paid plan (Starter, Pro, or Mega) which includes commercial use rights, no attribution requirements, and guaranteed uptime SLAs. All paid plans are production-ready.

Can I use Jobs Report from a browser?
Yes! The Jobs Report API supports CORS with wildcard configuration, so you can call it directly from browser-based JavaScript without needing a proxy server. See the CORS section above for details.
What happens if I exceed my Jobs Report credit limit?

When you reach your monthly credit limit, Jobs Report API requests will return an error until you upgrade your plan or wait for the next billing cycle. You'll receive notifications at 80% and 95% usage to give you time to upgrade if needed.

What's Next?

Continue your journey with these recommended resources

Was this page helpful?