# Open-Meteo Weather Forecast via SuVerse Proxy

> Open-Meteo Weather Forecast via SuVerse Proxy is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns current weather data (temperature, conditions, wind) for any location using Open-Meteo, defaulting to New York City

## Facts

- Endpoint: GET https://proxy.suverse.io/v1/data/weather-forecast-nyc
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-8666f284
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Vrq-HDoNh45VUqGSy7HQA

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 proxy-suverse-io-8666f284
```

Example prompt: What's the current temperature, weather conditions, and wind speed right now — default to New York City?

## When to prefer this

Use this endpoint when you need free, no-API-key weather data for a location — especially NYC by default — and want current conditions (temperature, wind, weather state) without managing upstream credentials. Ideal for quick agent enrichment tasks like travel context, logistics decisions, or local recommendations.

## Known failure modes

- Invalid or out-of-range lat/lon query params return an error
- Open-Meteo upstream service unavailable causes a proxy failure
- Missing or malformed query parameters may fall back to NYC default silently
- Network timeout if Open-Meteo upstream is slow

## How this service works

Free weather data from Open-Meteo. Current temperature, conditions, wind for any location (default NYC, customizable via query params). No upstream API key. AI agent travel context, logistics weather, local recommendation, geocoded forecast API.

## Output

Returns current weather data from Open-Meteo including temperature, weather conditions/description, and wind speed and direction for the requested location (defaulting to NYC if no coordinates provided).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proxy-suverse-io-8666f284/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
