# Multi-day Forecast from Norwegian Meteorological Institute

> Multi-day Forecast from Norwegian Meteorological Institute is a paid API for AI agents from flat-rate-llm.kikoribera03.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a day-by-day weather forecast (min/max temp, precipitation, wind, midday symbol) for any global coordinate, up to 9 days out, sourced from Norway's official meteorological model.

## Facts

- Endpoint: POST https://flat-rate-llm.kikoribera03.workers.dev/v1/weather/forecast
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/multi-day-forecast-from-norwegian-meteorological-institute-58656fe6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1gZjWdcDQZiTIqXv9bQ-z

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-forecast-from-norwegian-meteorological-institute-58656fe6 -d '<json body>'
```

Example prompt: Can you pull the official Norwegian Meteorological Institute 7-day forecast for coordinates 59.9139° N, 10.7522° E — I need daily high and low temps, precipitation, and wind for each day?

## When to prefer this

Choose this endpoint when you need an authoritative, citable weather forecast from a national meteorological service rather than a commercial aggregator, especially when source attribution and official model provenance matter. Ideal for planning decisions that require credible sourcing (e.g. reports, agriculture, construction, research), for any global coordinate without needing a city name, and when you need up to 9 days of structured daily data including min/max temps, precipitation, wind, and weather symbols.

## Known failure modes

- Missing required lat or lon parameters returns a validation error
- Latitude out of range (-90 to 90) or longitude out of range (-180 to 180) causes a bad request error
- Requesting more than 9 days may return partial data or an error
- The last day in the response may be flagged as partial/incomplete
- Upstream MET Norway API downtime may cause a service unavailable response
- Network timeout from the Cloudflare Worker proxy layer

## How this service works

60 paid endpoints with no metering, no API key and no account. Each endpoint has one flat price per call, whatever the size of the request: LLM completions with automatic failover across several large models, read-only EVM tooling over Base, Ethereum, Polygon, Arbitrum and Optimism, and pure crypto utilities that touch no network.

## Output

A JSON object containing the requested coordinates, an array of daily forecast objects (each with min/max temperature, total precipitation, strongest wind speed, and a midday weather symbol), declared units, model run timestamp, data source attribution, license, and the altitude in metres for the queried point.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "lat",
  "lon"
 ],
 "properties": {
  "lat": {
   "type": "number",
   "description": "Latitude in decimal degrees, -90 to 90. Rounded to 4 decimals."
  },
  "lon": {
   "type": "number",
   "description": "Longitude in decimal degrees, -180 to 180. Rounded to 4 decimals."
  },
  "days": {
   "type": "number",
   "description": "How many days to return, 1-9. Defaults to 5. The last day is usually partial and says so."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lat": {
   "type": "number"
  },
  "lon": {
   "type": "number"
  },
  "days": {
   "type": "array",
   "items": {
    "type": "object"
   }
  },
  "units": {
   "type": "object"
  },
  "source": {
   "type": "string"
  },
  "license": {
   "type": "string"
  },
  "modelRun": {
   "type": "string"
  },
  "altitudeMetres": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/multi-day-forecast-from-norwegian-meteorological-institute-58656fe6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from flat-rate-llm.kikoribera03.workers.dev](https://www.zero.xyz/host/flat-rate-llm.kikoribera03.workers.dev/llms.txt)
