# x402-factory Los Angeles Hourly Weather Forecast

> x402-factory Los Angeles 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 (temperature, precipitation probability, wind) for Los Angeles up to 168 hours out, using NWS-derived data bias-blended with a calibrated station model, with each data point labeled by its production method.

## Facts

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

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-los-angeles-hourly-weather-forecast-fd738f07
```

Example prompt: Pull me the next 72 hours of hourly weather for Los Angeles — temperature, rain chance, and wind — in imperial units, and tell me which model produced each hour.

## When to prefer this

Choose this endpoint when you specifically need Los Angeles weather with method-labeled hourly granularity and NWS+station-blend calibration — ideal for agents that require transparent provenance per data point. Prefer over generic weather APIs when you need to audit whether each forecast hour is NWS-derived or bias-corrected, or when building weather×market edge pipelines focused on the LA region. The built-in LA coordinates eliminate geocoding overhead.

## Known failure modes

- Invalid 'hours' value outside 1–240 range returns validation error
- Invalid 'units' enum value (not 'imperial' or 'metric') returns 400
- NWS upstream data outage may cause partial or degraded forecast coverage
- Payment failure (insufficient USDC or x402 misconfiguration) returns 402
- Requests beyond 168-hour coverage may fall back to pure NWS without station blending

## How this service works

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

## Output

A time-series array of hourly forecast data points for Los Angeles covering up to 240 hours (configurable, default 48), each entry containing temperature, precipitation probability, wind speed/direction, the forecast timestamp, and a label indicating whether the value was produced by the NWS-derived model or the x402-factory bias-blended calibrated station model.

## 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-los-angeles-hourly-weather-forecast-fd738f07/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)
