# x402-factory Miami Hourly Weather Forecast

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

## Facts

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

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-miami-hourly-weather-forecast-272f0539
```

Example prompt: Pull the hourly Miami weather forecast for the next 72 hours in imperial units — I want temperature, precipitation probability, and wind, with the model method labeled for each hour.

## When to prefer this

Choose this endpoint when you need a Miami-specific hourly weather forecast without having to supply coordinates, and when transparency about the forecast method (NWS vs. blended station model) matters for your use case. It is more convenient than the generic /v1/forecast/point endpoint for Miami-focused applications and cheaper to call than a full multi-city forecast service.

## Known failure modes

- Invalid hours value (outside 1–240 range) returns a validation error
- Invalid units enum value returns a bad request error
- Upstream NWS data unavailability may cause partial or degraded forecast data
- Payment failure (x402) results in 402 response before forecast data is returned

## How this service works

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

## Output

A time-series array of hourly weather data for Miami covering up to 168 hours (or the requested number of hours), each entry including temperature, precipitation probability, wind speed, and a label identifying whether the value was produced by the NWS-derived model or the bias-blended calibrated station model. Units are imperial by default but can be set to metric.

## 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-miami-hourly-weather-forecast-272f0539/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)
