# x402-factory NYC Hourly Weather Forecast

> x402-factory NYC 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 New York City — temperature, precipitation probability, and wind — up to 168 hours ahead, using an NWS-derived, bias-blended model that labels each method used.

## Facts

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

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-nyc-hourly-weather-forecast-415a9b5e
```

Example prompt: Give me the hourly NYC 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 specifically need an hourly forecast for New York City without supplying coordinates, and want each data point labeled by its production method (NWS vs. bias-blended). It is more convenient than the generic /v1/forecast/point endpoint for NYC-specific use cases and offers up to 168 hours of calibrated, method-labeled hourly data — useful when model transparency matters.

## Known failure modes

- Requesting more than 240 hours returns a validation error
- Invalid units value (anything other than 'metric' or 'imperial') causes a 400 error
- NWS upstream outage may degrade or delay forecast data
- hours=0 or negative values rejected by schema minimum constraint
- Payment failure (insufficient USDC balance) blocks the call with a 402 response

## How this service works

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

## Output

An hourly time-series array for New York City covering up to 168 hours (or the requested horizon), with each hour containing temperature, precipitation probability, and wind data in the requested unit system. Each data point is labeled with the method that produced it (NWS-derived or bias-blended calibrated station model), mirroring the shape of the /v1/forecast/point endpoint.

## 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-nyc-hourly-weather-forecast-415a9b5e/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)
