# ForgeMesh Daily Weather Outlook

> ForgeMesh Daily Weather Outlook 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 plus a 3-day daily forecast (high, low, precipitation chance) for any lat/lon coordinate worldwide.

## Facts

- Endpoint: POST https://x402.forgemesh.io/daily-weather-outlook
- 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-daily-weather-outlook-1ec107d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CRw2ithqCzy-6VzT71ADZ

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-daily-weather-outlook-1ec107d8 -d '<json body>'
```

Example prompt: What's the current weather and the next 3 days of highs, lows, and rain chances at coordinates 29.76, -95.36?

## When to prefer this

Choose this endpoint when you need a lightweight, no-integration-required short-range daily weather forecast (current + 3 days) for any global coordinate. Ideal for trip planning, outdoor event scheduling, or enriching location-aware workflows without subscribing to a dedicated weather provider. The 10-minute cache keeps costs low at $0.005/call.

## Known failure modes

- Invalid or out-of-range latitude/longitude values return an error
- Payment failure or insufficient USDC balance blocks the request
- Coordinates over land-locked or polar regions may have limited forecast data
- Upstream weather data provider outage may cause stale or missing data
- Malformed request body (e.g., missing latitude or longitude) returns a validation error

## How this service works

Look up current conditions and the next three days of daily highs, lows, and precipitation chance for any coordinates worldwide. Useful for trip planning, outdoor-event scheduling, and any agent that needs a short-range forecast without integrating a dedicated weather provider. Cached 10 minutes for freshness and cost.

## Output

A structured response containing current weather conditions and three days of daily forecasts, each including high temperature, low temperature, and precipitation probability, for the given coordinates. Data is cached up to 10 minutes for freshness.

## 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-daily-weather-outlook-1ec107d8/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)
