实时天气 接口

分类:天气气象 请求方式:GET / POST

根据城市名称查询当前实时天气, 包含温度、风力、湿度等。

接口编码

weather-now

调用地址

/api/data/weather-now

按次价格

0.10 元/次

包月价格

9.90 元/月

实时天气 接口说明

请求参数

调用时携带以下参数(计费方式为按次 / 包月,详见下方「计费说明」):

参数路径类型示例值
citystring"北京"

请求示例

GET  /api/data/weather-now?city="北京"&key=你的访问Key

请求体(POST)

{
  "city": "\u5317\u4EAC"
}

返回示例

{
  "code": 0,
  "data": {
    "city": "\u5317\u4EAC",
    "now": {
      "temp": "32\u2103",
      "weather": "\u6674",
      "wind": "\u4E1C\u5357\u98CE2\u7EA7",
      "humidity": "35%",
      "updated": "2026-08-20 12:00"
    }
  }
}

计费与试用说明