# Open-Meteo City Weather (vending-machine-seven)

> Open-Meteo City Weather (vending-machine-seven) is a paid API for AI agents from vending-machine-seven.vercel.app, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns current temperature and wind conditions for a named city using live Open-Meteo forecast data

## Facts

- Endpoint: GET https://vending-machine-seven.vercel.app/api/v/weather
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/open-meteo-city-weather-vending-machine-seven-e1377808
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EpXfyKWKdraxfZdR-mG8L

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 open-meteo-city-weather-vending-machine-seven-e1377808
```

Example prompt: What's the current temperature and wind speed in Tokyo right now?

## When to prefer this

Use this endpoint when you need real-time current temperature and wind data for a single city by name, without needing a full multi-day forecast or historical data. It is ideal for lightweight weather lookups where only current conditions matter and you want a pay-per-call model rather than managing an API key.

## Known failure modes

- Unknown or misspelled city name returns an error or defaults to London
- Open-Meteo upstream unavailability causes a 502/503 response
- Missing 'city' query parameter defaults to London rather than erroring
- Invalid or non-public city names may return unexpected results

## How this service works

Current temperature and wind for a city from Open-Meteo (live forecast data)

## Output

Returns a JSON object with the city name, current temperature, current wind data (speed/direction), and a service identifier. The 'ok' boolean indicates success. Data is sourced live from Open-Meteo's forecast API.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "city": {
       "type": "string",
       "description": "City name, default London"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "city": {
       "type": "string"
      },
      "current": {
       "type": "object"
      },
      "service": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/open-meteo-city-weather-vending-machine-seven-e1377808/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vending-machine-seven.vercel.app](https://www.zero.xyz/host/vending-machine-seven.vercel.app/llms.txt)
