Pluvia Weather API — v3
Welcome to the Pluvia Weather API v3 documentation.
The v3 API provides current weather conditions, precipitation timeseries, and metadata for a location or region. It supports multiple geometry types for spatial queries and multiple data sources.
Base URL
curl "https://api.pluvia.ai/v1/nowcast?lat=1.3521&lon=103.8198" -H "Authorization: Bearer pk_live_xxxxxxxxxxxx"
What's in v3
- Current weather — temperature, wind, humidity, pressure, cloud cover, and a human-readable summary
- Precipitation timeseries — intensity and probability at a configurable interval
- Flexible geometry — query by point, bounding box, geohash, or polygon
- Source selection — choose between
nowcast(default),gfs, orspacesync
Quick Example
{
"version": "3.0",
"query": {
"geometry_type": "point",
"coords": [51.5074, -0.1278],
"start": "2024-06-01 12:00:00.000000 UTC",
"end": "2024-06-01 15:00:00.000000 UTC"
},
"weather": { ... },
"precipitation": { ... },
"metadata": { ... }
}