# Current Weather from Norwegian Meteorological Institute

> Current Weather 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-14).

Returns real-time weather conditions for any lat/lon point on Earth using the Norwegian Meteorological Institute's official forecast model, including temperature, humidity, wind, pressure, cloud cover, and next-hour precipitation.

## Facts

- Endpoint: POST https://flat-rate-llm.kikoribera03.workers.dev/v1/weather/now
- 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/current-weather-from-norwegian-meteorological-institute-0bae4843
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JX_fBbtnqxYflH7hL3XoL

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 current-weather-from-norwegian-meteorological-institute-0bae4843 -d '<json body>'
```

Example prompt: What are the current weather conditions at latitude 59.9139, longitude 10.7522 — give me temperature, wind, humidity, and what precipitation is expected in the next hour, from the official Norwegian Meteorological Institute model.

## When to prefer this

Choose this endpoint when you need authoritative, citable weather data from an official national meteorological institute rather than a commercial aggregator, especially when accuracy provenance matters (scientific reporting, compliance, or official documentation). It covers the entire globe, is priced at a flat $0.01 USDC per call with no API key required, and returns declared units and model run metadata so results can be independently verified.

## Known failure modes

- Invalid latitude or longitude values (outside -90/90 or -180/180 range) result in an error response
- Upstream MET Norway API unavailable causes a service error
- Coordinates over open ocean or polar regions may return sparse or less reliable data
- The hours parameter exceeding 24 may be rejected or silently clamped
- Network timeout from the Cloudflare Worker to MET Norway

## 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 current temperature in Celsius, relative humidity percentage, atmospheric pressure in hPa, wind speed in m/s and compass bearing, cloud cover percentage, precipitation expected in the next hour in mm, a text description of conditions, a weather symbol code, the model run timestamp, altitude of the point, declared units, license info, and optionally an array of up to 24 additional hourly forecast steps.

## 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, which is what the institute accepts."
  },
  "lon": {
   "type": "number",
   "description": "Longitude in decimal degrees, -180 to 180. Rounded to 4 decimals."
  },
  "hours": {
   "type": "number",
   "description": "How many hourly steps to include after the current one, 0-24. Defaults to 6."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lat": {
   "type": "number"
  },
  "lon": {
   "type": "number"
  },
  "next": {
   "type": "array",
   "items": {
    "type": "object"
   }
  },
  "units": {
   "type": "object"
  },
  "source": {
   "type": "string"
  },
  "symbol": {
   "type": "string"
  },
  "license": {
   "type": "string"
  },
  "modelRun": {
   "type": "string"
  },
  "conditions": {
   "type": "string"
  },
  "observedFor": {
   "type": "string"
  },
  "pressureHpa": {
   "type": "number"
  },
  "windSpeedMs": {
   "type": "number"
  },
  "temperatureC": {
   "type": "number"
  },
  "cloudCoverPct": {
   "type": "number"
  },
  "altitudeMetres": {
   "type": "number"
  },
  "windFromCompass": {
   "type": "string"
  },
  "windFromDegrees": {
   "type": "number"
  },
  "relativeHumidityPct": {
   "type": "number"
  },
  "precipitationNext1hMm": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/current-weather-from-norwegian-meteorological-institute-0bae4843/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)
