# x402-factory Washington DC Hourly Weather Forecast

> x402-factory Washington DC Hourly Weather Forecast is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns an hourly weather forecast (temperature, precipitation probability, wind) for Washington, DC up to 168 hours ahead, using NWS-derived data bias-blended with a calibrated station model.

## Facts

- Endpoint: GET https://x402-factory.com/v1/forecast/washington-dc
- 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/x402-factory-washington-dc-hourly-weather-forecast-35777303
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IE-cY-2eX5vOZEeO09lKd

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 x402-factory-washington-dc-hourly-weather-forecast-35777303
```

Example prompt: What's the hourly weather forecast for Washington, DC for the next 72 hours in imperial units — include temperature, precipitation probability, and wind?

## When to prefer this

Choose this endpoint when you specifically need an hourly Washington, DC weather forecast without having to specify coordinates, and you want each data point labeled by its production method (NWS vs. bias-blended station model). It is preferable to a generic point forecast endpoint when DC is your fixed target and you value the methodological transparency or the bias-calibration layer the provider applies.

## Known failure modes

- Requested hours exceeds maximum (240) — validation error returned
- Invalid units value (not 'metric' or 'imperial') — rejected with schema error
- NWS upstream outage — may return partial data or error
- Network timeout if upstream data source is unavailable
- Payment not received or insufficient USDC — 402 Payment Required

## How this service works

Hourly Washington, DC weather forecast (blend model, method labeled) — Hourly weather forecast for Washington, DC: temperature, precipitation probability, and wind, up to 168 hours out. NWS-derived series, bias-blended with our calibrated station model where covered — every response labels the method that produced it. Same shape as /v1/forecast/point with the Washington, DC coordinates built in.

## Output

An hourly time-series array for Washington, DC covering up to 168 hours (or up to 240 if requested), each entry containing temperature, precipitation probability, and wind speed/direction. Every data point is labeled with the method used to produce it (NWS-derived or bias-blended with the calibrated station model). Response shape mirrors the generic /v1/forecast/point endpoint but with DC coordinates built in.

## 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",
     "required": [],
     "properties": {
      "hours": {
       "type": "integer",
       "default": 48,
       "maximum": 240,
       "minimum": 1
      },
      "units": {
       "enum": [
        "metric",
        "imperial"
       ],
       "type": "string",
       "default": "imperial"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-washington-dc-hourly-weather-forecast-35777303/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-factory.com](https://www.zero.xyz/host/x402-factory.com/llms.txt)
