# x402-factory Jacksonville Hourly Weather Forecast

> x402-factory Jacksonville 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-13).

Returns an hourly weather forecast for Jacksonville (up to 168 hours) with temperature, precipitation probability, and wind, using a bias-blended NWS + calibrated station model with method labeling on every response.

## Facts

- Endpoint: GET https://x402-factory.com/v1/forecast/jacksonville
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-jacksonville-hourly-weather-forecast-674f0e9c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OvishUEMtyhzAWQMPQOG0

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-jacksonville-hourly-weather-forecast-674f0e9c
```

Example prompt: Pull the hourly Jacksonville weather forecast for the next 72 hours in imperial units — I need temperature, precipitation probability, and wind, and I want to know which model method produced the data.

## When to prefer this

Choose this endpoint when you specifically need Jacksonville weather without having to supply coordinates, and when forecast method transparency (NWS vs. calibrated blend) is important. Prefer it over the generic /v1/forecast/point endpoint for Jacksonville-only use cases to save parameter setup. Ideal for agents that need reliable hourly Jacksonville forecasts with provenance labeling baked in.

## Known failure modes

- Requesting hours beyond the maximum (240) returns a validation error
- Invalid units enum value returns a 400 bad request
- NWS data unavailability may degrade blended model output or reduce forecast horizon
- Payment failure (x402) results in a 402 response and no data returned
- Network timeout if upstream NWS data is slow to respond

## How this service works

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

## Output

An hourly time series for Jacksonville covering up to 168 hours (or the requested number of hours), with temperature, precipitation probability, wind speed and direction, and a method label indicating whether each data point was produced by the NWS-derived model or the bias-blended calibrated station model. Response shape mirrors the generic /v1/forecast/point endpoint with Jacksonville coordinates pre-applied.

## 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-jacksonville-hourly-weather-forecast-674f0e9c/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)
