# Multi-Day Daily Weather Forecast by Location

> Multi-Day Daily Weather Forecast by Location is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns a multi-day daily weather forecast (high/low temperature, precipitation amount and probability, max wind) for a given latitude/longitude or city name.

## Facts

- Endpoint: GET https://api.x402node.dev/weather/forecast
- 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/multi-day-daily-weather-forecast-by-location-c98f4241
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AaEq14CvHK_I4jCvCOH0_

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 multi-day-daily-weather-forecast-by-location-c98f4241
```

Example prompt: Give me a 7-day daily weather forecast for Austin, Texas — I need the high and low temperatures, rain probability, precipitation amount, and max wind speed for each day.

## When to prefer this

Use this endpoint when you need structured multi-day daily weather data (temperature range, rain chance, wind) for planning, logistics, or travel decisions by city name or geographic coordinates. Prefer this over a current-conditions endpoint when forward-looking daily summaries are needed rather than real-time hourly data.

## Known failure modes

- Unknown or misspelled city name returns an error or empty result
- Invalid or out-of-range latitude/longitude returns a 400 or error response
- Requested number of days exceeds the supported forecast horizon
- Payment not accepted or underpaid returns a 402 status
- Service temporarily unavailable returns a 5xx error

## How this service works

Multi-day daily weather forecast by latitude and longitude or city: high and low temperature, precipitation amount and probability, max wind. For planning and logistics. weather forecast, daily forecast, rain chance, temperature forecast, by city Accepts payment on Base or Solana — either network works.

## Output

An array of daily forecast entries, each containing the date, high and low temperatures, precipitation amount, precipitation probability, and maximum wind speed for the requested location.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "lat",
      "lon"
     ],
     "properties": {
      "lat": {
       "type": "string",
       "description": "latitude"
      },
      "lon": {
       "type": "string",
       "description": "longitude"
      },
      "city": {
       "type": "string",
       "description": "city name (optional if lat+lon)"
      },
      "days": {
       "type": "string",
       "description": "forecast days 1-16 (default 7)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/multi-day-daily-weather-forecast-by-location-c98f4241/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
