Minutely Precipitation
Minute-level precipitation API provides precipitation data for the next 2 hours in China. It can predict the rainfall every minute and every 1km grid.
This data is only supported for Chinese cities.
Request URL #
-
Pro
https://api.qweather.com/v7/minutely/5m?[params]
Request Parameters #
All parameters are separated by &
. If no optional parameters are set, the default value will be used.
location
The comma-separated longitude and latitude of the location to be queried.
For example: location=116.41,39.92
key
API authentication key, please refer to How To Get Your Key. Support Signature Authentication.
For example: key=12334567890ABC
lang
Multi-language settings, only support Chinese and English for this data.
zh
Chinese, defaulten
English
Response #
// Minutely Precip
// Pro https://api.qweather.com/v7/minutely/5m?location=116.38999,39.9099&lang=en&key=YOUR_KEY
// Dev https://devapi.qweather.com/v7/minutely/5m?location=116.38999,39.9099&lang=en&key=YOUR_KEY
{
"code": "200",
"updateTime": "2021-02-14T16:15+08:00",
"fxLink": "http://hfx.link/1",
"summary": "No precip for 120 min",
"minutely": [
{
"fxTime": "2021-02-14T16:15+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T16:20+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T16:25+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T16:30+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T16:35+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T16:40+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T16:45+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T16:50+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T16:55+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T17:00+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T17:05+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T17:10+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T17:15+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T17:20+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T17:25+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T17:30+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T17:35+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T17:40+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T17:45+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T17:50+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T17:55+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T18:00+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T18:05+08:00",
"precip": "0.0",
"type": "snow"
},
{
"fxTime": "2021-02-14T18:10+08:00",
"precip": "0.0",
"type": "snow"
}
],
"refer": {
"sources": [
"Weather China"
],
"license": [
"commercial license"
]
}
}
Parameters | Description |
---|---|
code |
API status code, please refer to Status Code |
updateTime |
|
fxLink |
Responsive web page of this data, for embedded in website or APP |
summary |
Precipitation description |
minutely.fxTime |
Forecast time |
minutely.precip |
Accumulated precipitation in 10 minutes, unit is millimeter. |
minutely.type |
Type of precipitation |
refer.sources |
Data source and other statements, may be null |
refer.license |
Data license, may be null |