# Suverse Historical Weather (Open-Meteo Archive)

> Suverse Historical Weather (Open-Meteo Archive) is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-15).

Returns daily max/min temperature and precipitation for any lat/lon coordinate over a specified date range, sourced from the Open-Meteo historical archive.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-weather-historical
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-historical-weather-open-meteo-archive-75e03d0b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JDv0K6-potN226UHE-5_-

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-historical-weather-open-meteo-archive-75e03d0b -d '<json body>'
```

Example prompt: Pull the historical daily weather for coordinates 40.7128, -74.0060 from January 1 to December 31 last year — I need the daily high and low temperatures and precipitation for each day.

## When to prefer this

Choose this endpoint when you need historical (past) daily weather data — specifically max/min temperature and precipitation — for an arbitrary geographic coordinate over a custom date range. It is ideal for backtesting, climatology baselines, and event reconciliation workflows. Prefer this over forecast APIs when the dates are in the past and over raw Open-Meteo integration when you need a paid, proxied, agent-friendly interface with x402 payment support.

## Known failure modes

- Invalid or out-of-range latitude/longitude returns an error
- Date range outside the Open-Meteo archive coverage returns no data
- Malformed date format causes request rejection
- Extremely large date ranges may time out or return partial results
- Missing required body fields returns a validation error

## How this service works

Historical daily weather for any latitude and longitude over a date range from the Open-Meteo archive: daily max and min temperature and precipitation per day. For AI agents backtesting weather strategies, building climatology baselines, and event reconciliation.

## Output

A time series of daily weather records for the requested coordinate and date range, including each day's maximum temperature, minimum temperature, and total precipitation, sourced from the Open-Meteo historical archive.

## 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-historical-weather-open-meteo-archive-75e03d0b/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)
