# Forgemesh Hourly Weather Forecast (Temperature, Precipitation, Wind)

> Forgemesh Hourly Weather Forecast (Temperature, Precipitation, Wind) 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 hourly temperature, precipitation probability, precipitation amount, wind speed, and weather code for any latitude/longitude on Earth for the next 48 hours, refreshed every 10 minutes.

## Facts

- Endpoint: POST https://x402.forgemesh.io/hourly-temperature-precipitation
- 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/forgemesh-hourly-weather-forecast-temperature-precipitation-wind-c2d73ee0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B7PYjgqFKU9mVLUHbb8ml

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 forgemesh-hourly-weather-forecast-temperature-precipitation-wind-c2d73ee0 -d '<json body>'
```

Example prompt: What does the hour-by-hour weather look like for the next two days at latitude 29.76, longitude -95.36 — specifically temperature, rain chance, and wind speed so I can plan tomorrow's outdoor crew schedule?

## When to prefer this

Choose this endpoint when you need hour-granularity weather forecasts (not daily summaries or minute-level nowcasts) for any geographic coordinate over a 48-hour window. Ideal for scheduling decisions — shift planning, field-service dispatch, outdoor event logistics — where knowing conditions at a specific hour matters. Prefer the sibling 15-minute precipitation nowcast endpoint for immediate 2-hour rain decisions, and this endpoint for planning the next 1–2 days.

## Known failure modes

- Invalid or out-of-range latitude/longitude returns a 4xx error or empty dataset
- Payment failure via x402 protocol results in a 402 Payment Required response and no data returned
- Coordinates over land-only data gaps (e.g. poles) may return sparse or null values
- Network timeout if the upstream weather model is temporarily unavailable
- Missing required parameters (latitude or longitude) results in a validation error

## How this service works

Hourly temperature, precipitation probability, precipitation amount, wind speed, and weather code for the next two days at any point on Earth, as structured JSON. Use for shift scheduling, field-service dispatch, and agents that plan activities around a specific hour's conditions. Refreshed every 10 minutes.

## Output

A structured JSON object containing arrays of hourly values for the next ~48 hours: temperature (likely in Celsius or Fahrenheit), precipitation probability (percentage), precipitation amount (mm), wind speed, and WMO weather code — each indexed by hour, suitable for shift planning or activity scheduling logic.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "latitude": {
   "type": "string",
   "description": "Latitude, e.g. 29.76"
  },
  "longitude": {
   "type": "string",
   "description": "Longitude, e.g. -95.36"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "hourly": {
    "time": [
     "2026-07-16T00:00",
     "2026-07-16T01:00"
    ],
    "temperature_2m": [
     24.6,
     24.8
    ],
    "wind_speed_10m": [
     9.1,
     8.4
    ],
    "precipitation_probability": [
     0,
     0
    ]
   },
   "hourly_units": {
    "temperature_2m": "°C",
    "wind_speed_10m": "km/h",
    "precipitation_probability": "%"
   }
  },
  "attribution": "Open-Meteo.com (CC BY 4.0)"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-hourly-weather-forecast-temperature-precipitation-wind-c2d73ee0/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)
