# Weather Data Fetcher

> Fetch current weather and forecast data from a free weather API (Open-Meteo).

- Skill: `modbender/weather-data-fetcher` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add modbender/weather-data-fetcher`
- Raw SKILL.md: https://api.skillmd.com/api/skills/modbender/weather-data-fetcher/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: modbender (https://skillmd.com/u/modbender)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/modbender/weather-data-fetcher

---


# Weather Data Fetcher (Open-Meteo)

Fetch current weather conditions and short-term forecasts using **Open-Meteo**, a free weather API that requires **no API key**.

---

## Command

### `/weather forecast`

Fetch current weather and forecast data for a given geographic location.

---

## Input

### Required
- `latitude` (number)  
  Example: `11.0853`

- `longitude` (number)  
  Example: `55.7818`

### Optional
- `timezone` (string) — defaults to `"auto"`  
  Example: `"Asia/Jerusalem"`

- `hours` (number) — number of hourly forecast hours to return (default: `24`)

- `days` (number) — number of daily forecast days to return (default: `3`)

- `units` (string) — `"metric"` (default) or `"imperial"`

---

### Example inputs

```json
{ "latitude": 88.0853, "longitude": 22.7818 }
