Minutely Precipitation
Get minute-level precipitation forecast data every 5 minutes for the next 2 hours in China.
This data is only supported for Chinese cities.
Endpoint#
GET /v7/minutely/5mParameters#
Query parameters
-
location(required) The comma-separated longitude and latitude (decimal, up to 2 decimal places) of the location to be queried. For examplelocation=116.41,39.92 -
langMulti-language setting, please see Language to find out how our multi-language works and how to set up.
Request example#
curl -X GET --compressed \
-H 'Authorization: Bearer your_token' \
'https://your-api-host/v7/minutely/5m?location=116.41%2C39.92&lang=en'
Replace your_token and your_api_host with your JWT Authentication and API Host
Response#
{
"code": "200",
"updateTime": "2021-12-16T18:55+08:00",
"fxLink": "https://www.qweather.com",
"summary": "Rain will stop in 95 minutes",
"minutely": [
{
"fxTime": "2021-12-16T18:55+08:00",
"precip": "0.15",
"type": "rain"
},
{
"fxTime": "2021-12-16T19:00+08:00",
"precip": "0.23",
"type": "rain"
},
{
"fxTime": "2021-12-16T19:05+08:00",
"precip": "0.21",
"type": "rain"
},
{
"fxTime": "2021-12-16T19:10+08:00",
"precip": "0.17",
"type": "rain"
},
{
"fxTime": "2021-12-16T19:15+08:00",
"precip": "0.18",
"type": "rain"
},
{
"fxTime": "2021-12-16T19:20+08:00",
"precip": "0.24",
"type": "rain"
},
{
"fxTime": "2021-12-16T19:25+08:00",
"precip": "0.31",
"type": "rain"
},
{
"fxTime": "2021-12-16T19:30+08:00",
"precip": "0.37",
"type": "rain"
},
{
"fxTime": "2021-12-16T19:35+08:00",
"precip": "0.41",
"type": "rain"
},
{
"fxTime": "2021-12-16T19:40+08:00",
"precip": "0.43",
"type": "rain"
},
{
"fxTime": "2021-12-16T19:45+08:00",
"precip": "0.41",
"type": "rain"
},
{
"fxTime": "2021-12-16T19:50+08:00",
"precip": "0.36",
"type": "rain"
},
{
"fxTime": "2021-12-16T19:55+08:00",
"precip": "0.32",
"type": "rain"
},
{
"fxTime": "2021-12-16T20:00+08:00",
"precip": "0.27",
"type": "rain"
},
{
"fxTime": "2021-12-16T20:05+08:00",
"precip": "0.22",
"type": "rain"
},
{
"fxTime": "2021-12-16T20:10+08:00",
"precip": "0.17",
"type": "rain"
},
{
"fxTime": "2021-12-16T20:15+08:00",
"precip": "0.11",
"type": "rain"
},
{
"fxTime": "2021-12-16T20:20+08:00",
"precip": "0.06",
"type": "rain"
},
{
"fxTime": "2021-12-16T20:25+08:00",
"precip": "0.0",
"type": "rain"
},
{
"fxTime": "2021-12-16T20:30+08:00",
"precip": "0.0",
"type": "rain"
},
{
"fxTime": "2021-12-16T20:35+08:00",
"precip": "0.0",
"type": "rain"
},
{
"fxTime": "2021-12-16T20:40+08:00",
"precip": "0.0",
"type": "rain"
},
{
"fxTime": "2021-12-16T20:45+08:00",
"precip": "0.0",
"type": "rain"
},
{
"fxTime": "2021-12-16T20:50+08:00",
"precip": "0.0",
"type": "rain"
}
],
"refer": {
"sources": [
"https://developer.qweather.com/attribution.html"
],
"license": [
"QWeather Developers License"
]
}
}
-
fxLinkuri Responsive web page of this data, for embedded in website or APP -
summarystring Precipitation description -
minutelyarray Minutely precipitation data-
fxTimedate-time Forecast time in ISO 8601 format -
precipstring Accumulated precipitation in 5 minutes, unit is millimeter -
typestring Type of precipitation,rainandsnow
-
-
referobject Data sources and licensing information-
sourcesarray Data source and other statements, may be null -
licensearray Data license, may be null
-