# x402-factory Charlotte Hourly Weather Forecast

> x402-factory Charlotte 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 Charlotte, NC — including temperature, precipitation probability, and wind — up to 168 hours ahead, using a bias-blended NWS + calibrated station model with per-response method labeling.

## Facts

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

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-charlotte-hourly-weather-forecast-f12ef844
```

Example prompt: Can you pull the hourly weather forecast for Charlotte for the next 72 hours in imperial units — I need temperature, rain chance, and wind?

## When to prefer this

Choose this endpoint when you specifically need an hourly weather forecast for Charlotte, NC and want method-labeled, bias-blended output that improves on raw NWS data. It is preferable to a generic point-forecast endpoint when you want transparency about whether each hour's forecast came from the NWS model or a calibrated station blend. Use it over weather APIs that don't label their methodology when model accuracy and auditability matter.

## Known failure modes

- Invalid 'hours' value outside 1–240 range returns a validation error
- Unsupported 'units' enum value returns a 400 bad request
- Upstream NWS data temporarily unavailable may return a 503 or stale/partial forecast
- Payment not fulfilled (x402 protocol failure) returns 402 Payment Required
- Requesting more than 168 hours may return data but with lower confidence beyond that horizon

## How this service works

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

## Output

A time-series array of hourly forecast entries for Charlotte, NC, each containing temperature (in imperial or metric units), precipitation probability (%), and wind data (speed and direction), spanning up to the requested number of hours (default 48, max 240). Every entry includes a method label indicating whether it was produced by the NWS model, the calibrated station blend, or another approach.

## 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-charlotte-hourly-weather-forecast-f12ef844/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)
