# 7-Day Weather Forecast

> 7-Day Weather Forecast is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a 7-day daily weather forecast for any place, including high/low temperatures, precipitation, wind, sunrise/sunset, and daily condition, using Open-Meteo data.

## Facts

- Endpoint: GET https://intel.rallylive.ca/data/forecast
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/7-day-weather-forecast-371feebe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qcKNBiBdFctE7oczK7qwJ

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 7-day-weather-forecast-371feebe
```

Example prompt: What's the 7-day weather forecast for Seattle? I need the daily highs and lows, rain chances, and wind for each day.

## When to prefer this

Choose this endpoint when you need a quick, free (Open-Meteo backed), structured 7-day daily weather forecast for any named location without needing an API key or heavy configuration. It's ideal for lightweight agents that need temperature ranges, precipitation, wind, and sun times in a single call at minimal cost ($0.01 per lookup). Prefer alternatives if you need hourly granularity, historical data, or real-time current conditions.

## Known failure modes

- Unrecognizable place name returns a location resolution error or empty result
- Network timeout if the upstream Open-Meteo service is slow or unavailable
- Missing or malformed query parameter returns a 400 bad request
- Rate limit or payment failure returns a 402 Payment Required response

## How this service works

7-day daily weather forecast for a place: high and low temperature, precipitation sum and probability, max wind, sunrise/sunset and condition per day, with the resolved location. Free Open-Meteo data. $0.01 per lookup.

## Output

Returns a structured 7-day daily forecast with: resolved location name, and per-day data including high and low temperatures, total precipitation sum, precipitation probability, maximum wind speed, sunrise and sunset times, and a weather condition label for each day.

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/7-day-weather-forecast-371feebe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
