IPMA
Portugal's official city weather forecasts as JSON
IPMA, Portugal's meteorological institute, publishes open weather and climate data including multi-day city forecasts. Fetch a city's daily forecast by its numeric ID as static JSON with no key. Attribution to IPMA is expected when you reuse the data.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://api.ipma.pt/open-data/forecast/meteorology/cities/daily/1110600.json
{
"owner": "IPMA",
"country": "PT",
"data": [
{
"precipitaProb": "0.0",
"tMin": "25.6",
"tMax": "38.7",
"predWindDir": "NW",
"idWeatherType": 5,
"forecastDate": "2026-07-05"
}
]
}curl "https://api.ipma.pt/open-data/forecast/meteorology/cities/daily/1110600.json"const res = await fetch("https://api.ipma.pt/open-data/forecast/meteorology/cities/daily/1110600.json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.ipma.pt/open-data/forecast/meteorology/cities/daily/1110600.json")
print(res.json())/forecast/meteorology/cities/daily/1110600.jsonPROBEDPortugal's official city weather forecasts as JSON
/forecastWeather or time forecast for coordinates.
/forecast/1Forecast details by ID (example: 1).
/forecast?limit=10Weather or time forecast for coordinates.
/forecast/search?q=testSearch by query parameters.
/API root or index route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
IPMA: common questions
Is IPMA free to use?
Yes — IPMA is a free weather API. Free tier: Free, no key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does IPMA need an API key?
No — IPMA needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call IPMA from the browser?
Yes — IPMA returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is IPMA up right now?
IPMA is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.