# x402-factory San Antonio Hourly Weather Forecast

> x402-factory San Antonio 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 San Antonio (temperature, precipitation probability, wind) up to 168 hours out, using NWS-derived data bias-blended with a calibrated station model, with method labeling on every response.

## Facts

- Endpoint: GET https://x402-factory.com/v1/forecast/san-antonio
- 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-san-antonio-hourly-weather-forecast-d003de05
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p5UE1mj0ffrXvJEN8X-iU

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-antonio-hourly-weather-forecast-d003de05
```

Example prompt: Pull the San Antonio hourly weather forecast for the next 72 hours in imperial units and tell me which method was used to generate it.

## When to prefer this

Choose this endpoint when you need a city-specific, pre-geocoded San Antonio hourly forecast without supplying coordinates, and when forecast method transparency (NWS vs. bias-blended) is important. It is more convenient than the generic /v1/forecast/point for San Antonio-specific use cases. Prefer it over raw NWS data when you want bias correction from a calibrated local station model.

## Known failure modes

- hours parameter out of range (1–240) returns a validation error
- Invalid units enum value returns a bad request error
- NWS source data unavailable may cause degraded or partial forecast coverage
- Upstream model outage may delay or truncate the forecast series
- Payment failure (x402) returns 402 with payment details before data is served

## How this service works

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

## Output

A time-series array of hourly forecast entries for San Antonio, each including temperature, precipitation probability, and wind data, labeled with the method (NWS or bias-blended station model) that produced it — covering up to the requested horizon (max 240 hours, typically 168 hours of high-confidence data).

## 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-antonio-hourly-weather-forecast-d003de05/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)
