# x402-factory Boston Hourly Weather Forecast

> x402-factory Boston 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-14).

Returns an hourly weather forecast for Boston (up to 168 hours) including temperature, precipitation probability, and wind speed, using a bias-blended NWS-derived model with method labeling.

## Facts

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

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-boston-hourly-weather-forecast-e54bef08
```

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

## When to prefer this

Choose this endpoint when you specifically need an hourly Boston weather forecast with transparent method labeling (NWS vs. bias-blended station model) and don't want to pass coordinates manually. It is more convenient than the generic /v1/forecast/point endpoint for Boston-specific use cases and provides the same data quality with built-in calibration. Prefer it over raw NWS APIs when you need reliable bias correction and a consistent JSON schema.

## Known failure modes

- Invalid 'hours' value outside 1–240 range returns a validation error
- Invalid 'units' value (not 'imperial' or 'metric') returns a bad request error
- Upstream NWS data outage may cause degraded or stale forecast data
- Payment failure or insufficient USDC balance returns a 402 Payment Required response
- Network timeout if upstream NWS API is slow to respond

## How this service works

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

## Output

A JSON array of hourly forecast entries for Boston covering up to 168 hours (or up to 240 if specified), each including timestamp, temperature, precipitation probability, wind speed, and a method label indicating whether the value came from the NWS model, the calibrated station blend, or another source. Units are imperial by default but can be set to 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-boston-hourly-weather-forecast-e54bef08/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)
