# x402-factory Portland Window Rain Forecast

> x402-factory Portland Window Rain 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, precipitation, temperature range, wind, comfort index, and an overall verdict for a specified time window in Portland, OR.

## Facts

- Endpoint: GET https://x402-factory.com/v1/forecast/portland/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-portland-window-rain-forecast-eaa362d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pE0of45uSquLVN198M0aA

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-portland-window-rain-forecast-eaa362d6
```

Example prompt: Will it rain in Portland this Saturday between 10am and 4pm? I need a rain probability and an overall weather verdict so I can decide whether to hold the event outdoors.

## When to prefer this

Use this endpoint when you need a weather assessment specifically for Portland, OR for a bounded time window (up to 12 hours) — especially for scheduling or go/no-go decisions where rain probability, comfort, and severity flags are more useful than a raw hour-by-hour forecast. It avoids the need to supply Portland's coordinates and delivers a pre-aggregated verdict rather than raw data. Prefer the generic /v1/forecast/window endpoint instead if you need a city other than Portland.

## Known failure modes

- Invalid ISO-8601 datetime format returns a 400 validation error
- Window end more than 12 hours after start returns a 400 error
- Missing x402 payment header or insufficient USDC balance returns 402 Payment Required
- Start time in the past or too far in the future may return a 400 or empty forecast
- Network or upstream weather data source failure returns 5xx

## How this service works

Will it rain in Portland during your event window — Event-window weather odds for Portland: 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 Portland coordinates built in.

## Output

A JSON object with: rain_probability (0–1), expected_precip_mm (total precipitation in mm), temp_range (low/high in °C or °F), wind_max (max wind speed), comfort_index (0–1), severity_flags (array of active warning strings), and verdict (plain-language summary of expected conditions). Also includes meta information about the window and data freshness.

## 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-portland-window-rain-forecast-eaa362d6/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)
