# US Unemployment Rate Trend Brief (LLM-Written)

> US Unemployment Rate Trend Brief (LLM-Written) is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Returns an LLM-generated narrative brief summarizing the recent trend in the US unemployment rate, optionally over a configurable time window.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/econ-unemployment/brief
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/us-unemployment-rate-trend-brief-llm-written-7c250ff5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uL8pEaNAvVFnSdEwScT8f

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-trend-brief-llm-written-7c250ff5
```

Example prompt: Give me an LLM-written brief on the recent trend in US unemployment rate — pull data from the last 30 days and summarize what's been happening.

## When to prefer this

Choose this endpoint when you need a human-readable, narrative interpretation of US unemployment trends rather than raw data points. Ideal for agent workflows that need to present economic context in plain English, generate reports, or answer natural language questions about labor market conditions. Prefer over raw data endpoints when the consumer is a person or a downstream prompt rather than a computation.

## Known failure modes

- No recent BLS data available for the requested window — brief may be empty or based on zero changes
- Invalid 'since' date-time format returns a validation error
- Payment of $0.25 USDC not completed — 402 Payment Required response
- LLM generation failure — fallback to template-based brief (reflected in generatedBy field)
- Network or upstream BLS data source unavailability

## How this service works

An LLM-written read on the recent trend in US unemployment rate.

## Output

A JSON object containing a 'brief' field with an LLM-written narrative describing recent US unemployment rate trends, a 'generatedBy' field indicating whether it was produced by an LLM or a template, and a 'basedOnChanges' integer indicating how many data points the brief is based on.

## 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": {
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Window start (default: last 30 days)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "brief": {
       "type": "string"
      },
      "generatedBy": {
       "enum": [
        "llm",
        "template"
       ],
       "type": "string"
      },
      "basedOnChanges": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/us-unemployment-rate-trend-brief-llm-written-7c250ff5/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)
