# x402.forgemesh.io Historical Weather by Date and Coordinates

> x402.forgemesh.io Historical Weather by Date and Coordinates is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns daily high/low temperature and total precipitation for a given lat/lon across a historical date range, sourced from reanalysis weather model data back to 1940.

## Facts

- Endpoint: POST https://x402.forgemesh.io/weather-on-a-date
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-forgemesh-io-historical-weather-by-date-and-coordinates-6b7c598d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a77nRTFItK0p41PasRWWo

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 x402-forgemesh-io-historical-weather-by-date-and-coordinates-6b7c598d -d '<json body>'
```

Example prompt: Can you look up the historical daily high and low temperatures and total precipitation for Houston (29.76, -95.36) from August 25 to September 1, 2017?

## When to prefer this

Use this endpoint when you need verified historical daily weather data (temperature highs/lows and precipitation) for a specific geographic coordinate and past date range. Ideal for post-event analysis, insurance claims verification, agricultural backtesting, or research requiring reanalysis model data back to 1940. Prefer this over forecast endpoints when the dates are in the past.

## Known failure modes

- Date out of supported historical range (pre-1940 or future dates) — likely returns an error or empty result
- Invalid latitude/longitude values — validation error
- Malformed date strings not matching YYYY-MM-DD format — parse error
- Date range too large — may time out or return error
- Payment failure — 402 response if USDC payment not processed

## How this service works

Daily high temperature, low temperature, and total precipitation for a given latitude/longitude across any past date range, sourced from a reanalysis weather model. Use for verifying what the weather was on a specific past date — event post-mortems, claims verification, or agricultural and research backtesting. Coverage back to 1940.

## Output

Daily records for each date in the requested range, each containing the high temperature, low temperature, and total precipitation for the given latitude/longitude, drawn from a reanalysis weather model with coverage back to 1940.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "end_date": {
   "type": "string",
   "description": "End date, YYYY-MM-DD, e.g. 2026-06-05"
  },
  "latitude": {
   "type": "string",
   "description": "Latitude, e.g. 29.76"
  },
  "longitude": {
   "type": "string",
   "description": "Longitude, e.g. -95.36"
  },
  "start_date": {
   "type": "string",
   "description": "Start date, YYYY-MM-DD, e.g. 2026-06-01"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "daily": {
    "time": [
     "2026-06-01",
     "2026-06-02"
    ],
    "precipitation_sum": [
     0.2,
     0
    ],
    "temperature_2m_max": [
     22.4,
     25.5
    ],
    "temperature_2m_min": [
     13.7,
     10.8
    ]
   },
   "daily_units": {
    "precipitation_sum": "mm",
    "temperature_2m_max": "°C",
    "temperature_2m_min": "°C"
   }
  },
  "attribution": "Open-Meteo.com (CC BY 4.0), ERA5 reanalysis"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-forgemesh-io-historical-weather-by-date-and-coordinates-6b7c598d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
