# x402-factory Las Vegas Window Weather Forecast

> x402-factory Las Vegas Window Weather Forecast is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns rain probability and expected weather conditions for a user-defined time window in Las Vegas, optimized for event scheduling decisions.

## Facts

- Endpoint: GET https://x402-factory.com/v1/forecast/las-vegas/window
- Price: $0.02/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-window-weather-forecast-9b85da64
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_762MDcUIjVgNrTr3lkULw

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-window-weather-forecast-9b85da64
```

Example prompt: Will it rain in Las Vegas this Saturday between 4pm and 10pm? I'm planning an outdoor event and need to know the rain probability, temperature range, and whether conditions are safe.

## When to prefer this

Use this endpoint when you need Las Vegas-specific event-window weather intelligence with built-in coordinates — it saves you from supplying lat/lon and is purpose-built for scheduling decisions. Prefer it over generic forecast endpoints when the user is asking about rain risk or comfort conditions for a specific time window in Las Vegas, especially for outdoor event planning.

## Known failure modes

- Invalid ISO-8601 date format for start or end — returns 400 with validation error
- Window duration exceeds 12 hours — returns 400 with constraint error
- End time before start time — returns 400
- Start time too far in the future beyond forecast horizon — returns 422 or limited data
- Missing payment / x402 payment failure — returns 402 Payment Required
- Service unavailable or upstream weather data outage — returns 503

## How this service works

Will it rain in Las Vegas during your event window — Event-window weather odds for Las Vegas: pass a start and end time (or omit them for the next six hours) and get rain probability and expected conditions across the window — built for scheduling decisions. Same shape as /v1/forecast/window with the Las Vegas coordinates built in.

## Output

A JSON object containing: rain_probability (0–1 float), expected_precip_mm (float), temp_range with low and high values, wind_max (number), comfort_index (0–1 float), severity_flags (array of strings describing notable hazards), and a verdict string summarizing overall conditions for the window. Also includes a meta object with window timestamps and source metadata.

## 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": {
      "end": {
       "type": "string",
       "format": "date-time",
       "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$",
       "description": "Window end (ISO-8601), ≤12h after start. Default: start + 6h."
      },
      "start": {
       "type": "string",
       "format": "date-time",
       "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$",
       "description": "Window start (ISO-8601). Default: the top of the next hour."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "rain_probability",
        "expected_precip_mm",
        "temp_range",
        "wind_max",
        "comfort_index",
        "severity_flags",
        "verdict"
       ],
       "properties": {
        "verdict": {
         "type": "string"
        },
        "wind_max": {
         "type": "number"
        },
        "temp_range": {
         "type": "object",
         "required": [
          "low",
          "high"
         ],
         "properties": {
          "low": {
           "type": "number"
          },
          "high": {
           "type": "number"
          }
         },
         "additionalProperties": false
        },
        "comfort_index": {
         "
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-las-vegas-window-weather-forecast-9b85da64/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)
