# ForgeMesh Current Weather by Coordinates

> ForgeMesh Current Weather by 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 current temperature, wind, and conditions plus a 3-day daily forecast for any latitude/longitude worldwide

## Facts

- Endpoint: POST https://x402.forgemesh.io/current-weather
- 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-current-weather-by-coordinates-67384c9b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jZE7fjMN5oBnkaI4QvrOB

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-current-weather-by-coordinates-67384c9b -d '<json body>'
```

Example prompt: What's the current weather and 3-day outlook at latitude 29.76, longitude -95.36? I need temperature, wind, and conditions.

## When to prefer this

Use this endpoint when you need structured, machine-readable current weather plus a short-range forecast for any arbitrary geographic coordinate worldwide, especially in travel, logistics, or planning agent workflows that require precise point-based weather rather than city-name lookups.

## Known failure modes

- Invalid or out-of-range latitude/longitude values return an error
- Payment not processed or insufficient USDC balance results in 402 response
- Coordinates over land-locked or unsupported regions may return partial data
- Malformed request body (missing required fields) returns a 400-level error

## How this service works

Current weather API by coordinates: temperature, wind, and conditions code for any latitude/longitude worldwide, plus a 3-day daily outlook. Structured JSON for travel, logistics, and planning agents.

## Output

A structured JSON object containing current temperature, wind speed/direction, a weather conditions code, and a 3-day daily forecast outlook for the requested coordinates.

## 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/forgemesh-current-weather-by-coordinates-67384c9b/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)
