# US Nonfarm Payrolls Latest Status

> US Nonfarm Payrolls Latest Status is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the latest reported total nonfarm payroll employment value from official economic data.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/econ-payrolls/status
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/us-nonfarm-payrolls-latest-status-f7afd87f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iIYpW7Lgzb46lWli1QkFF

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability us-nonfarm-payrolls-latest-status-f7afd87f
```

Example prompt: What's the latest reported total nonfarm payroll employment figure? Just give me the most recent value and date.

## When to prefer this

Use this endpoint when you need the most recently reported US total nonfarm payroll employment figure, especially in automated economic monitoring workflows or when building macroeconomic dashboards. Prefer this over manual BLS lookups when you need a paid, programmatic, real-time-accessible data point with low latency.

## Known failure modes

- No data available if the underlying economic data source has not been updated recently
- Invalid entityId returns a 404 or empty response
- Payment required (402) if x402 payment header is not provided
- Service unavailable if Railway hosting is down

## How this service works

Latest reported total nonfarm payroll employment value.

## Output

Returns the latest total nonfarm payroll employment value with associated date and entity metadata from the tracked economic data source.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string",
       "description": "entityId to look up; omit to list tracked entities"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "entity": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/us-nonfarm-payrolls-latest-status-f7afd87f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
