# x402-factory Las Vegas Hourly Weather Forecast

> x402-factory Las Vegas 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 Las Vegas up to 168 hours out, using NWS-derived data bias-blended with a calibrated local station model.

## Facts

- Endpoint: GET https://x402-factory.com/v1/forecast/las-vegas
- 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-las-vegas-hourly-weather-forecast-08ce8db8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5gEpoCCZMwkgMKwcvQVjX

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-las-vegas-hourly-weather-forecast-08ce8db8
```

Example prompt: Give me the hourly Las Vegas weather forecast for the next 72 hours in imperial units — I need temperature, precipitation chance, and wind.

## When to prefer this

Choose this endpoint when you specifically need an hourly Las Vegas weather forecast with labeled forecast methodology (NWS blend vs. calibrated station model), especially for AI agents operating in agentic pipelines that require transparent data provenance. Prefer over generic weather APIs when you want bias-corrected, station-calibrated Las Vegas forecasts rather than raw NWS grid data, and when you want a pre-scoped endpoint (no coordinates required) with per-call micropayment pricing via x402.

## Known failure modes

- Invalid 'hours' value outside 1–240 range returns a validation error
- Invalid 'units' enum value returns a schema error
- NWS upstream outage may cause partial or degraded forecast coverage
- Requesting beyond 168 hours may return reduced-confidence or unavailable data beyond that horizon
- Network/payment failure (x402 payment not completed) results in a 402 Payment Required response

## How this service works

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

## Output

An array of hourly weather data points for Las Vegas covering up to 168 hours (or the requested horizon), each including 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 x402-factory's calibrated station model). Units are imperial or metric per request.

## 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-las-vegas-hourly-weather-forecast-08ce8db8/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)
