# auor.io Google Weather Hourly Forecast

> auor.io Google Weather Hourly Forecast is a paid API for AI agents from api.auor.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns an hourly weather forecast for a given location using Google Weather data

## Facts

- Endpoint: GET https://api.auor.io/google-weather/v1/forecast/hours
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/auor-io-google-weather-hourly-forecast-e6e5db20
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ybKlXffP9OBMYu93DxH1Q

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 auor-io-google-weather-hourly-forecast-e6e5db20
```

Example prompt: What's the hour-by-hour weather forecast for San Francisco today? I need to know temperatures and precipitation chances for each hour.

## When to prefer this

Choose this endpoint when you need fine-grained, hour-by-hour weather data for a specific location without setting up accounts or subscriptions — especially useful for agents that need to make time-sensitive decisions based on weather (scheduling, logistics, travel planning) and can pay per-call via x402 micropayments.

## Known failure modes

- Invalid or unrecognized location returns an error or empty result
- Missing required query parameters returns a 400 Bad Request
- Payment not provided or insufficient triggers a 402 Payment Required
- Location outside supported coverage area may return no data
- Rate limiting or upstream Google Weather API unavailability returns 5xx errors

## How this service works

Hourly weather forecast

## Output

An hourly weather forecast including temperature, precipitation probability, wind speed, humidity, and weather conditions for each hour of the day at the specified location.

## 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": {
     "$ref": "https://api.auor.io/schemas/google-weather/v1/forecast/hours/input.json",
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/auor-io-google-weather-hourly-forecast-e6e5db20/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.auor.io](https://www.zero.xyz/host/api.auor.io/llms.txt)
