# x402-factory Phoenix Hourly Weather Forecast

> x402-factory Phoenix 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 Phoenix, AZ — including temperature, precipitation probability, and wind — up to 168 hours out, using NWS-derived data bias-blended with a calibrated station model.

## Facts

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

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-phoenix-hourly-weather-forecast-1a149b72
```

Example prompt: What's the hour-by-hour weather forecast for Phoenix over the next 72 hours — show me temperature, rain chance, and wind in imperial units?

## When to prefer this

Choose this endpoint when you specifically need Phoenix, AZ hourly weather data and want the convenience of coordinates being pre-configured. It is ideal when forecast method transparency (NWS vs blended model label per data point) matters, or when you need up to a week of hourly granularity. Prefer the general /v1/forecast/point endpoint when you need forecasts for other locations.

## Known failure modes

- Invalid 'hours' value outside 1–240 range returns a validation error
- Invalid 'units' enum value returns a 400 error
- NWS upstream outage may degrade or delay forecast availability
- Requests beyond 168 hours may have reduced accuracy or method coverage
- Payment failure (insufficient USDC balance) returns a 402 Payment Required

## How this service works

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

## Output

An ordered hourly time series for Phoenix, AZ covering up to 168 hours (or the requested window up to 240h), with each entry including temperature, precipitation probability, and wind speed/direction. Each data point is labeled with the method used to produce it (NWS-derived or bias-blended station model), and the response mirrors the shape of the general /v1/forecast/point endpoint with Phoenix coordinates pre-baked.

## 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-phoenix-hourly-weather-forecast-1a149b72/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)
