# x402.forgemesh.io Local Weather Conditions

> x402.forgemesh.io Local Weather Conditions 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-14).

Returns current weather conditions (temperature, feels-like, humidity, wind, condition code) plus a 3-day forecast of highs, lows, and rain probability for any latitude/longitude coordinate pair.

## Facts

- Endpoint: POST https://x402.forgemesh.io/local-weather-conditions
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-forgemesh-io-local-weather-conditions-73ccc8e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_do8Cmm_MvFSpDskrKdxT_

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-local-weather-conditions-73ccc8e9 -d '<json body>'
```

Example prompt: What's the current weather and 3-day forecast at latitude 29.76, longitude -95.36? I need the temperature, feels-like, humidity, wind speed, and rain chances.

## When to prefer this

Choose this endpoint when you need both current conditions AND a short-term 3-day forecast in a single API call for any global coordinate. Ideal for assistant agents, logistics planners, or event schedulers that require an integrated snapshot of present and near-future weather without making multiple calls to separate current-conditions and forecast endpoints.

## Known failure modes

- Invalid or out-of-range latitude/longitude values may return a 400 or empty result
- Coordinates over land-only data sources for ocean points may return degraded data
- Payment failure or insufficient USDC balance returns a 402 Payment Required error
- Rate limiting or server-side errors may return 5xx responses
- Missing required latitude or longitude fields return a validation error

## How this service works

Real-time local weather — temperature, feels-like, humidity, wind speed, and condition code — plus a 3-day forecast of highs, lows, and rain probability for any latitude/longitude. For assistant agents, logistics planning, and event scheduling that need current and near-term conditions in one call. Updated every 10 minutes.

## Output

A JSON response containing current conditions (temperature, feels-like temperature, humidity, wind speed, and condition code) along with a 3-day forecast array where each day includes high temperature, low temperature, and rain probability. Data is refreshed every 10 minutes.

## 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": {
   "daily": {
    "temperature_2m_max": [
     31.2,
     29.8,
     30.1
    ]
   },
   "current": {
    "temperature_2m": 27.3,
    "wind_speed_10m": 12.1
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-forgemesh-io-local-weather-conditions-73ccc8e9/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)
