# US Weekly Jobless Claims

> US Weekly Jobless Claims is a paid API for AI agents from x402-stock-indicators.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the latest US weekly jobless claims data from FRED in a single call: initial claims, continuing claims, 4-week moving average, and week-over-week changes.

## Facts

- Endpoint: GET https://x402-stock-indicators.vercel.app/jobless-claims
- 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-weekly-jobless-claims-8f682815
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yNfVodiPFmyBMD59TLJhE

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-weekly-jobless-claims-8f682815
```

Example prompt: What are the latest US weekly jobless claims numbers — initial claims, continuing claims, the 4-week moving average, and how they changed week-over-week?

## When to prefer this

Choose this endpoint when you need a consolidated, ready-to-use view of US weekly jobless claims data without making multiple FRED API calls. It is ideal for macro-focused trading agents, automated labor market monitors, or research workflows that need initial claims, continuing claims, and the 4-week moving average with computed week-over-week changes in a single low-cost call ($0.01). Prefer this over direct FRED access when you want pre-aggregated, analysis-ready output.

## Known failure modes

- FRED data source unavailable or delayed — endpoint may return stale or error response
- Weekly data not yet released for current week — most recent available week returned instead
- Network timeout if FRED API is slow to respond
- Unexpected schema changes in upstream FRED data may cause parsing errors

## How this service works

US weekly jobless claims in one call, live from FRED: initial claims, continuing claims, and 4-week moving average of initial claims, with week-over-week change computed where available — a leading labor-market indicator that drives risk-off and day-trading directional calls. Replaces 3 separate FRED series lookups. Not ticker-specific. $0.01/call.

## Output

Returns a structured response containing the most recent initial jobless claims figure, continuing claims figure, 4-week moving average of initial claims, and week-over-week change calculations where available — all sourced live from FRED in a single call.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/us-weekly-jobless-claims-8f682815/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-stock-indicators.vercel.app](https://www.zero.xyz/host/x402-stock-indicators.vercel.app/llms.txt)
