# x402-factory Atlanta Hourly Weather Forecast

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

## Facts

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

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-atlanta-hourly-weather-forecast-5cc4c347
```

Example prompt: Pull the hourly Atlanta weather forecast for the next 72 hours in imperial units — I need temperature, precipitation probability, and wind for each hour, and make sure you note which blend method was used for the forecast.

## When to prefer this

Choose this endpoint when you need pre-configured, Atlanta-specific hourly weather without supplying coordinates, and when forecast method transparency (NWS vs. bias-blended) matters. Prefer this over a general-purpose /v1/forecast/point call when Atlanta is always the target, saving parameter overhead. Best for agents that need rapid, reliable Atlanta forecasts with calibrated accuracy signals baked in.

## Known failure modes

- hours parameter out of range (must be 1–240) → validation error
- Invalid units value (not 'metric' or 'imperial') → schema validation error
- NWS data temporarily unavailable → upstream data gap or degraded response
- Stale calibration data → method label may indicate fallback to base NWS model
- Payment not processed (x402 protocol) → 402 Payment Required response

## How this service works

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

## Output

An hourly time-series array for Atlanta covering up to 168 hours (or up to 240 if specified), with each entry containing temperature, precipitation probability, wind speed/direction, and a label indicating the forecast method (NWS-derived or bias-blended station model). Response shape matches /v1/forecast/point with Atlanta coordinates pre-filled.

## 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-atlanta-hourly-weather-forecast-5cc4c347/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)
