# x402-factory Hourly Point Weather Forecast

> x402-factory Hourly Point 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 hourly weather forecast data (up to 240 hours) for any lat/lon coordinate, including temperature, precipitation, wind, humidity, and cloud cover.

## Facts

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

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-hourly-point-weather-forecast-ca0f01c3
```

Example prompt: Pull the hourly weather forecast for the next 72 hours at latitude 40.7128, longitude -74.0060 — I need temperature, precipitation probability, and wind, in metric units.

## When to prefer this

Use this endpoint when you need high-resolution hourly weather data for an exact geographic coordinate rather than a city name or region, especially when you need a multi-day horizon (up to 10 days) or specific meteorological variables like gusts, feels-like, or cloud cover. Prefer over NWS or open-source alternatives when you need a pay-per-call model without API key setup, or when ensemble percentile bands are not required.

## Known failure modes

- Invalid latitude (outside -90 to 90) or longitude (outside -180 to 180) returns a 400 error
- Requesting more than 240 hours returns a validation error
- Payment failure returns a 402 response requiring USDC payment
- Coordinates over open ocean or polar extremes may have reduced model accuracy
- Network timeout if the weather model is under load

## How this service works

Hourly point forecast for any coordinate, up to 168 hours — Hourly temperature, feels-like, precipitation probability/amount, wind, gusts, humidity, and cloud cover for an exact lat/lon: NWS-derived series, bias-blended with our calibrated station model where covered. Imperial by default (units=metric available). Requests beyond 168 hours are capped at the model's current horizon. Longer horizons cost more.

## Output

An array of hourly forecast entries for the specified coordinate covering 1–240 hours, each with temperature (imperial or metric), feels-like temperature, precipitation probability, precipitation amount, wind speed, wind gusts, humidity percentage, and cloud cover percentage.

## 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": [
      "lat",
      "lon"
     ],
     "properties": {
      "lat": {
       "type": "number",
       "maximum": 90,
       "minimum": -90
      },
      "lon": {
       "type": "number",
       "maximum": 180,
       "minimum": -180
      },
      "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-hourly-point-weather-forecast-ca0f01c3/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)
