# US Unemployment Rate - Latest Value

> US Unemployment Rate - Latest Value 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-15).

Returns the latest reported US unemployment rate value from official sources.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/econ-unemployment/status
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/us-unemployment-rate-latest-value-037828f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W0fFNOmONUZtujPO_C3Km

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-unemployment-rate-latest-value-037828f1
```

Example prompt: What's the latest reported US unemployment rate? Just give me the current figure and when it was recorded.

## When to prefer this

Use this endpoint when you need the single latest snapshot of the US unemployment rate without needing historical series. Prefer this over the 'new prints since timestamp' sibling endpoint when you just want the current value, not a changelog or delta feed.

## Known failure modes

- Data source unavailable — upstream BLS/FRED feed is down or delayed
- Invalid entity ID — if an unrecognized entityId is passed, may return empty or error
- No new data — if no recent prints are available, may return stale or empty response
- Payment not fulfilled — x402 payment required; missing or invalid payment returns 402 error

## How this service works

Latest reported US unemployment rate value.

## Output

Returns the most recently reported US unemployment rate value along with its observation date and entity metadata, sourced from official US government statistics (BLS/FRED).

## 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-unemployment-rate-latest-value-037828f1/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)
