五日天气预报
未来五日天气

接口地址 https://apis.kit9.cn/api/five_days_weather/api.php

请求方式 GET/POST

返回格式 JSON

HTTP/HTTPS 支持

请求示例 https://apis.kit9.cn/api/five_days_weather/api.php?city=上海

参数说明

参数 必填 类型 说明
cityString市/县

返回参数

名称 类型 说明
code number 状态码 200为正常,其它为异常
msg string 状态说明
data array 数组
date string 当日日期
weather string 当日天气
high string 当日高温
low string 当日低温
wind_direction string 当日风向

返回示例

{
    "code": 200,
    "msg": "success",
    "data": [
        {
            "date": "31日星期三",
            "weather": "小雨",
            "high": "12℃",
            "low": "9℃",
            "wind_direction": "东风"
        },
        {
            "date": "1日星期四",
            "weather": "大雨",
            "high": "10℃",
            "low": "6℃",
            "wind_direction": "北风"
        },
        {
            "date": "2日星期五",
            "weather": "小雨",
            "high": "8℃",
            "low": "6℃",
            "wind_direction": "北风"
        },
        {
            "date": "3日星期六",
            "weather": "小雨",
            "high": "11℃",
            "low": "8℃",
            "wind_direction": "北风"
        },
        {
            "date": "4日星期天",
            "weather": "中雨",
            "high": "17℃",
            "low": "9℃",
            "wind_direction": "东北风"
        }
    ]
}