# ForgeMesh Weather by Coordinates

> ForgeMesh 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 conditions (temperature, feels-like, humidity, wind, weather state) and a 3-day daily forecast (highs, lows, rain chance) for any latitude/longitude on Earth.

## Facts

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

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

Example prompt: What's the weather like right now at latitude 29.76, longitude -95.36, and will it rain in the next 3 days?

## When to prefer this

Use this endpoint when you need current conditions plus a short 3-day forecast for any arbitrary global coordinate and do not want to rely on a country-specific or region-locked weather provider. Ideal for travel planners, delivery schedulers, and AI assistants that receive GPS coordinates as input rather than city names.

## Known failure modes

- Missing or invalid latitude/longitude returns a 400 error
- Coordinates over land-only areas may have limited wind/ocean data
- Payment failure or insufficient USDC balance blocks access with a 402 response
- Extreme or out-of-range coordinate values (e.g. >90 lat) may return an error
- Service unavailability or upstream weather data gap may return a 503

## How this service works

Current temperature, feels-like, humidity, wind, and conditions plus a 3-day daily outlook (highs, lows, rain chance) for any point on Earth given as latitude/longitude. Built for travel planning, delivery scheduling, and assistant agents that need forecast data without a country-specific weather provider. Refreshed every 10 minutes.

## Output

A JSON response containing current conditions (temperature, feels-like, humidity, wind speed and direction, weather description) and a 3-day daily outlook with high/low temperatures and precipitation probability for each day. 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/forgemesh-weather-by-coordinates-e8b73159/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)
