格点实时天气
基于全球任意坐标的高精度实时天气,精确到3-5公里范围,包括:温度、湿度、大气压、天气状况、风力、风向等。
请求URL
https://api.qweather.com/v7/grid-weather/now
如果是免费订阅,将上述API Host更改为devapi.qweather.com
。参考免费订阅可用的数据。
请求参数
请求参数包括必选和可选参数,参数之间使用&
进行分隔。
请求示例
请将your_token
替换为你的JWT或了解身份认证
返回数据
返回数据是JSON格式并进行了Gzip压缩。
{
"code": "200",
"updateTime": "2021-12-16T18:25+08:00",
"fxLink": "https://www.qweather.com",
"now": {
"obsTime": "2021-12-16T10:00+00:00",
"temp": "-1",
"icon": "150",
"text": "晴",
"wind360": "287",
"windDir": "西北风",
"windScale": "2",
"windSpeed": "10",
"humidity": "27",
"precip": "0.0",
"pressure": "1021",
"cloud": "0",
"dew": "-17"
},
"refer": {
"sources": [
"QWeather"
],
"license": [
"QWeather Developers License"
]
}
}
-
code
请参考状态码 -
updateTime
当前API的最近更新时间 -
fxLink
当前数据的响应式页面,便于嵌入网站或应用 -
now.obsTime
数据观测时间 -
now.temp
温度,默认单位:摄氏度 -
now.icon
天气状况的图标代码,另请参考天气图标项目 -
now.text
天气状况的文字描述,包括阴晴雨雪等天气状态的描述 -
now.wind360
风向360角度 -
now.windDir
风向 -
now.windScale
风力等级 -
now.windSpeed
风速,公里/小时 -
now.humidity
相对湿度,百分比数值 -
now.precip
过去1小时降水量,默认单位:毫米 -
now.pressure
大气压强,默认单位:百帕 -
now.cloud
云量,百分比数值。可能为空 -
now.dew
露点温度。可能为空 -
refer.sources
原始数据来源,或数据源说明,可能为空 -
refer.license
数据许可或版权声明,可能为空