# x402-factory San Diego Hourly Weather Forecast

> x402-factory San Diego 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-14).

Returns an hourly weather forecast for San Diego (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/san-diego
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-san-diego-hourly-weather-forecast-79cb5f64
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__s2smr1LMYZ1XFOCKEtng

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-san-diego-hourly-weather-forecast-79cb5f64
```

Example prompt: Pull the San Diego hourly weather forecast for the next 72 hours in imperial units — I need temperature, precipitation probability, and wind, and make sure to include what method produced each value.

## When to prefer this

Choose this endpoint when you need pre-built, San Diego-specific hourly weather forecasts without supplying coordinates, and when you value method transparency (NWS vs. bias-blended station model labeled per hour). It is more convenient than the generic /v1/forecast/point endpoint for San Diego use cases and is cost-effective at $0.01 per call. Prefer it over generic weather APIs when calibrated, station-blended accuracy and method attribution are important.

## Known failure modes

- hours parameter outside 1–240 range returns validation error
- Invalid units enum value returns 400 error
- Upstream NWS data unavailability may cause degraded or cached response
- Payment of $0.01 USDC not received results in 402 Payment Required
- Requesting beyond 168 hours may return reduced accuracy or partial coverage

## How this service works

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

## Output

A time-series of hourly forecast records for San Diego, each containing temperature (in imperial or metric units), precipitation probability, wind data, and a method label indicating whether the value came from the NWS-derived baseline or the bias-blended calibrated station model. Covers up to 168 hours (or up to 240 if requested via the hours parameter).

## 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-san-diego-hourly-weather-forecast-79cb5f64/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)
