# x402-factory Austin Hourly Weather Forecast

> x402-factory Austin 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 Austin, TX — temperature, precipitation probability, and wind — up to 168 hours out, sourced from NWS and bias-blended with a calibrated station model.

## Facts

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

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-austin-hourly-weather-forecast-21e2cdce
```

Example prompt: Can you pull the hourly Austin weather forecast 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 hourly granularity for Austin, TX weather with transparent method labeling — especially when NWS accuracy matters and you want bias-blended station correction. It is Austin-specific and requires no coordinate input, making it faster to invoke than a generic point-forecast endpoint. Prefer it when your agent needs to act on Austin weather programmatically and wants to know whether each hour's forecast came from raw NWS or a calibrated blend.

## Known failure modes

- Request for hours beyond 240 will be rejected (max 240 hours allowed by schema)
- NWS data outage may degrade or delay response
- Invalid units enum value will return a validation error
- Network or payment authorization failure may result in 402 response requiring USDC payment
- If station model coverage is unavailable, fallback to pure NWS data may reduce accuracy

## How this service works

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

## Output

A time-series array of hourly weather data for Austin, TX covering up to 168 hours, including temperature, precipitation probability, and wind speed/direction per hour. Each entry is labeled with the forecast method used (NWS-derived or bias-blended with the calibrated station model), enabling transparency about data provenance.

## 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-austin-hourly-weather-forecast-21e2cdce/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)
