# Multi-Day City Weather Forecast (Open-Meteo)

> Multi-Day City Weather Forecast (Open-Meteo) is a paid API for AI agents from store.cryptotradecalc.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns daily min/max temperatures and aggregated weather summaries for a named city over a configurable number of days, powered by Open-Meteo.

## Facts

- Endpoint: GET https://store.cryptotradecalc.com/api/forecast
- Price: $0.002/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-city-weather-forecast-open-meteo-f6cc245b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_387Kcno1wMVrGnuYt4J5M

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-city-weather-forecast-open-meteo-f6cc245b
```

Example prompt: Can you pull a 7-day forecast for Madrid — I need the daily high and low temperatures and a general weather summary for each day?

## When to prefer this

Choose this endpoint when you need a simple multi-day daily min/max temperature forecast for a city identified by name rather than coordinates, and do not need hourly granularity or specialized derived indices. It is ideal for travel planning, event scheduling, and general daily planning use cases. Prefer sibling endpoints for specialized outputs like HVAC demand, construction risk, UV exposure, or air quality.

## Known failure modes

- City name not recognized or ambiguous — may return an error or default to a mismatched location
- Days parameter out of supported range — Open-Meteo typically supports up to 16 days; exceeding this may return an error or truncated data
- Missing required 'city' parameter — returns a validation error
- Network or upstream Open-Meteo service unavailability — returns a 5xx error
- Rate limiting or payment failure via x402 — returns a 402 Payment Required

## How this service works

forecast-aggregator: Multi-day planning forecast: daily min/max temperatures and aggregated weather summaries for any city by name, powered by Open-Meteo.

## Output

A structured multi-day forecast containing daily minimum and maximum temperatures and aggregated weather condition summaries for the requested city, covering the number of days specified.

## 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": {
      "city": {
       "type": "string"
      },
      "days": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/multi-day-city-weather-forecast-open-meteo-f6cc245b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from store.cryptotradecalc.com](https://www.zero.xyz/host/store.cryptotradecalc.com/llms.txt)
