RainViewer
Global weather-radar tile timestamps and map metadata
RainViewer's public API returns the latest global radar and satellite map frames as a JSON index of timestamps and tile paths. One keyless GET gives you everything needed to animate a precipitation radar layer. Attribution to RainViewer is requested.
GET https://api.rainviewer.com/public/weather-maps.json
{
"version": "2.0",
"generated": 1783246831,
"host": "https://tilecache.rainviewer.com",
"radar": {
"past": [
{
"time": 1783239600,
"path": "/v2/radar/fdcd7671376b"
}
],
"nowcast": []
}
}curl "https://api.rainviewer.com/public/weather-maps.json"const res = await fetch("https://api.rainviewer.com/public/weather-maps.json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.rainviewer.com/public/weather-maps.json")
print(res.json())/weather-maps.jsonPROBEDGlobal weather-radar tile timestamps and map metadata
/weather-maps.json?limit=5Paginated variant with limit parameter.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
RainViewer: common questions
Is RainViewer free to use?
Yes — RainViewer is a free weather API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does RainViewer need an API key?
No — RainViewer needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call RainViewer from the browser?
Yes — RainViewer 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 RainViewer up right now?
As of our last scheduled check, RainViewer is healthy with 100% uptime over 90 days and a 551 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.