# x402-factory Philadelphia Hourly Weather Forecast

> x402-factory Philadelphia 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 Philadelphia (up to 168 hours) with temperature, precipitation probability, and wind, using a bias-blended NWS and calibrated station model with labeled method provenance.

## Facts

- Endpoint: GET https://x402-factory.com/v1/forecast/philadelphia
- 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-philadelphia-hourly-weather-forecast-451342c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ua7HVYYmBQumLzaWeOTlB

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-philadelphia-hourly-weather-forecast-451342c0
```

Example prompt: Give me the hourly weather forecast for Philadelphia for the next 72 hours in imperial units, including temperature, precipitation probability, and wind.

## When to prefer this

Choose this endpoint when you need ready-to-use hourly weather data specifically for Philadelphia without having to supply coordinates, and when forecast method transparency (NWS vs. bias-blended station) matters. It is preferable to generic weather APIs when you want a calibrated, bias-corrected forecast with labeled data provenance, and it is simpler than the generic /v1/forecast/point endpoint since Philadelphia coordinates are already built in.

## Known failure modes

- Invalid hours value outside 1–240 range returns a validation error
- Invalid units enum value returns a bad request error
- NWS upstream outage may cause degraded or delayed forecast data
- Payment failure (x402) blocks the response if USDC payment is not completed
- Requesting beyond 168 hours may return data but with reduced accuracy warnings

## How this service works

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

## Output

An array of hourly forecast records for Philadelphia covering up to the requested horizon (default 48h, max 240h). Each record includes timestamp, temperature (imperial or metric), precipitation probability, wind speed and direction, and a method label indicating whether the data point came from the NWS model or the bias-blended calibrated station model.

## 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-philadelphia-hourly-weather-forecast-451342c0/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)
