# x402-factory Minneapolis Hourly Weather Forecast

> x402-factory Minneapolis 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-13).

Returns a bias-blended hourly weather forecast for Minneapolis (temperature, precipitation probability, wind) up to 168 hours ahead, with each data point labeled by its production method.

## Facts

- Endpoint: GET https://x402-factory.com/v1/forecast/minneapolis
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-minneapolis-hourly-weather-forecast-0228fdae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZT4XslbqdyQBTotfFNSa3

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-minneapolis-hourly-weather-forecast-0228fdae
```

Example prompt: Can you pull the hourly Minneapolis weather forecast for the next 72 hours in imperial units — I need temperature, precipitation probability, and wind?

## When to prefer this

Choose this endpoint when you need an hourly Minneapolis-specific weather forecast without supplying coordinates, and you want each data point labeled by its production method (NWS vs. bias-blended calibrated model). It is preferable over generic point-forecast endpoints when Minneapolis is your fixed target city and method transparency matters.

## Known failure modes

- hours parameter out of range (must be 1–240) — validation error
- units value not in enum (imperial/metric) — validation error
- NWS upstream outage may degrade or delay forecast data
- Payment failure (x402) if USDC balance insufficient
- Stale data if NWS feed delayed — method label will still indicate source

## How this service works

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

## Output

An ordered hourly time series (up to 240 hours, defaulting to 48) containing temperature, precipitation probability, and wind data for Minneapolis, with each entry labeled by the method used to produce it (NWS-derived or bias-blended calibrated station model). Units are imperial by default or metric if requested.

## 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-minneapolis-hourly-weather-forecast-0228fdae/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)
