# Suverse Weather Current

> Suverse Weather Current is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns real-time weather conditions (temperature, wind speed, wind direction, weather code) for a given latitude/longitude coordinate via Open-Meteo

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-weather-current
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-weather-current-7d6fd475
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SOsA6FaR6iJhkz_ygML0h

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 suverse-weather-current-7d6fd475 -d '<json body>'
```

Example prompt: What are the current weather conditions at 51.5074° N, 0.1278° W — I need the temperature, wind speed and direction, and weather code right now.

## When to prefer this

Choose this endpoint when you need real-time point-in-time weather conditions at a precise GPS coordinate and your stack already handles x402 micropayments. It is ideal for agent workflows that condition decisions on live weather — logistics, agriculture, event planning, energy — where a $0.003-per-call pay-as-you-go model is preferable to a subscription weather API. The Open-Meteo backend provides global coverage without an API key, making this suitable for high-breadth geographic queries.

## Known failure modes

- Invalid or out-of-range latitude/longitude values return a 4xx error
- Open-Meteo upstream unavailability may cause 5xx responses
- Malformed request body (missing required fields) returns a validation error
- Coordinates over ocean or remote areas may return sparse data
- Payment failure or insufficient USDC balance blocks the request with a 402 response

## How this service works

Current weather conditions for any latitude and longitude from Open-Meteo: temperature, wind speed, wind direction, weather code. For AI agents conditioning on real time weather, such as logistics, travel, energy demand, agriculture, and event planning.

## Output

Returns a JSON object containing current weather observations for the requested coordinate: air temperature (°C), wind speed (km/h or m/s), wind direction (degrees), and WMO weather interpretation code — all sourced in real time from Open-Meteo.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/suverse-weather-current-7d6fd475/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)
