# Open-Meteo Current Weather by Coordinate

> Open-Meteo Current Weather by Coordinate is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns current weather conditions (temperature, humidity, wind, precipitation, weather code) for a given lat/lng coordinate via Open-Meteo

## Facts

- Endpoint: GET https://api.x402node.dev/maps/weather
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-x402node-dev-2ded3bc5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GE-1sXMQX7Ftf-npeEKfp

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 api-x402node-dev-2ded3bc5
```

Example prompt: What's the current weather at latitude 37.78, longitude -122.42? I need the temperature, humidity, wind speed, and precipitation.

## When to prefer this

Use this endpoint when you need current real-time weather conditions for a precise geographic coordinate and do not have an Open-Meteo API key or want a pay-per-call model at $0.01 USDC. Ideal for AI agents needing location-aware weather data for travel, agriculture, or outdoor planning without managing API credentials.

## Known failure modes

- Missing or invalid lat/lng parameters returns an error
- Coordinates outside valid range (-90 to 90 lat, -180 to 180 lng) may fail
- Open-Meteo upstream outage causes 502 or timeout
- Malformed request body returns 400
- Payment of 0.01 USDC not completed returns 402

## How this service works

Current weather for a coordinate via Open-Meteo. Returns temperature, humidity, wind, precipitation and weather code with description. Pass lat and lng. For AI agents needing current weather, weather data, temperature and conditions by location. 实时天气查询。 Accepts payment on Base or Solana — either network works.

## Output

A JSON object containing current weather metrics for the specified coordinate: temperature, humidity, wind speed and direction, precipitation amount, and a weather code with a human-readable description (e.g. 'partly cloudy').

## 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": [
      "lat",
      "lng"
     ],
     "properties": {
      "lat": {
       "type": "string",
       "description": "Latitude of the location, e.g. 40.71"
      },
      "lng": {
       "type": "string",
       "description": "Longitude of the location, e.g. -74.00"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-x402node-dev-2ded3bc5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
