# auor.io Google Weather Current Conditions

> auor.io Google Weather Current Conditions 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 current weather conditions for a given location via Google Weather data

## Facts

- Endpoint: GET https://api.auor.io/google-weather/v1/current
- 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-current-conditions-3ed71c55
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PIuaw9Zpn8wnp6iYZ7WSR

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-current-conditions-3ed71c55
```

Example prompt: What's the current weather in San Francisco right now — temperature, conditions, and wind?

## When to prefer this

Use this endpoint when you need real-time, present-moment weather conditions rather than forecasts or historical data. Prefer this over the hourly forecast endpoint when the user wants to know what the weather is like right now. Choose this when you need a lightweight, pay-per-call weather lookup without managing API keys or subscriptions.

## Known failure modes

- Invalid or unrecognized location returns an error or empty result
- Missing required query parameters returns a 400 bad request
- Payment not included or insufficient USDC results in 402 Payment Required
- Network timeout if Google Weather backend is slow
- Ambiguous location names may return results for the wrong place

## How this service works

Current weather information

## Output

Returns current weather data including temperature, weather condition description, humidity, wind speed and direction, and other present-moment meteorological details for the queried location.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "latitude": 37.7749,
   "longitude": -122.4194
  }
 }
}
```

## 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/current/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-current-conditions-3ed71c55/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)
