# Auor.io Google Weather Daily Forecast

> Auor.io Google Weather Daily 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-13).

Returns a multi-day daily weather forecast for a given location using Google Weather data via the x402 payment protocol.

## Facts

- Endpoint: GET https://api.auor.io/google-weather/v1/forecast/days
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/auor-io-google-weather-daily-forecast-297d4dcd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nMdnSu-fe93RBvM7E6W-y

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-daily-forecast-297d4dcd
```

Example prompt: What's the daily weather forecast for the next 7 days in Austin, Texas?

## When to prefer this

Use this endpoint when you need daily-granularity weather forecasts (not hourly) across multiple days for planning purposes, and when you want to avoid account-based subscriptions by paying per-call in USDC via the x402 protocol. Prefer this over the hourly forecast sibling endpoint when day-level resolution is sufficient.

## Known failure modes

- Missing or invalid location parameter returns an error
- Unsupported location format causes a lookup failure
- x402 payment not provided or insufficient USDC returns a 402 Payment Required response
- Requesting too many forecast days beyond supported range returns an error
- Upstream Google Weather API unavailability causes a service error

## How this service works

Daily weather forecast

## Output

A structured multi-day daily weather forecast including temperatures, precipitation chances, and general weather conditions for the requested location and number of days.

## 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/days/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-daily-forecast-297d4dcd/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)
