# Suverse Weather Forecast (7-Day Daily)

> Suverse Weather Forecast (7-Day Daily) 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 a 7-day daily weather forecast (max/min temperature and total precipitation) for any latitude/longitude coordinate via Open-Meteo.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-weather-forecast
- 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-forecast-7-day-daily-e55bc042
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tBQLyhpokxmZTF4ck0oxi

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-forecast-7-day-daily-e55bc042 -d '<json body>'
```

Example prompt: Can you get me the 7-day daily weather forecast for latitude 40.7128, longitude -74.0060? I need the daily high and low temperatures and total precipitation for each day.

## When to prefer this

Choose this endpoint when you need structured daily weather forecasts (temperature range + precipitation) for any global coordinate over a 7-day horizon, especially for operational planning in agriculture, travel, energy, or retail. Prefer it over general-purpose weather APIs when you need reliable lat/lon-based daily aggregates without signup overhead and are comfortable with x402 micropayment per call.

## Known failure modes

- Invalid or out-of-range latitude/longitude returns an error or empty forecast
- Coordinates over open ocean or unsupported regions may return partial or no data
- Payment failure (x402) blocks the request before data is returned
- Malformed POST body or missing required fields returns a 400-level error
- Open-Meteo upstream outage may result in timeout or 503

## How this service works

Seven day daily weather forecast for any latitude and longitude from Open-Meteo: daily max and min temperature and total precipitation per day in local time. For AI agents planning weather sensitive operations like travel, agriculture, retail, and energy load.

## Output

A 7-day array of daily weather data including: date in local time, maximum temperature, minimum temperature, and total precipitation per day. Values are tied to the queried latitude/longitude coordinate and expressed in local time.

## 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-forecast-7-day-daily-e55bc042/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)
