# x402-factory Denver Hourly Weather Forecast

> x402-factory Denver 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 for Denver (up to 168 hours) with temperature, precipitation probability, and wind, using a bias-blended NWS+calibrated-station model with per-response method labeling.

## Facts

- Endpoint: GET https://x402-factory.com/v1/forecast/denver
- 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-denver-hourly-weather-forecast-7d83c92e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HsAVw5dkL56tLbrCjaXvM

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-denver-hourly-weather-forecast-7d83c92e
```

Example prompt: Pull me the hourly Denver weather forecast for the next 72 hours in imperial units — I need temperature, rain probability, and wind.

## When to prefer this

Choose this endpoint when you specifically need a pre-built hourly Denver forecast without supplying coordinates, and want transparency about whether each hour was produced by a raw NWS model or the bias-blended calibrated station model. Prefer this over a generic point-forecast endpoint when Denver is always your target location and you value per-data-point method attribution.

## Known failure modes

- Invalid 'hours' parameter outside 1–240 range returns validation error
- Invalid 'units' value (not 'imperial' or 'metric') returns 400 bad request
- NWS upstream outage may cause partial or degraded data
- Payment failure (insufficient USDC balance) results in 402 response and no data returned
- Forecast beyond ~168 hours may have reduced coverage or fallback to NWS-only model

## How this service works

Hourly Denver weather forecast (blend model, method labeled) — Hourly weather forecast for Denver: 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 Denver coordinates built in.

## Output

An hourly time-series array of weather data for Denver covering up to 168 hours (or the requested number of hours up to 240), with each entry containing temperature, precipitation probability, wind speed and direction, and a label indicating which model method (NWS-derived or bias-blended calibrated station) produced that data point. Units match the requested unit system (imperial or metric).

## 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-denver-hourly-weather-forecast-7d83c92e/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)
