日出日落

查询全球各地最多15天的日出日落时间。

请求地址示例

参数

参数名 类型 默认值 必须 备注
key String 你的API密钥
location Location 所查询的位置
language Language zh-Hans 语言
start Start 0 起始时间
days Int 你的权限允许的最多天数 返回从start算起days天的结果。最多查询前后15天的结果。

返回结果

{
  "results": [{
    "location": {
      "id": "WX4FBXXFKE4F",
      "name": "北京",
      "country": "CN",
      "path": "北京,北京,中国",
      "timezone": "Asia/Shanghai",
      "timezone_offset": "+08:00"
    },
    "sun": [{               //返回指定days天数的结果
      "date": "2016-10-01", //日期
      "sunrise": "06:10",   //日出时间
      "sunset": "18:00"     //日落时间
    }, {
      "date": "2016-10-02",
      "sunrise": "06:11",
      "sunset": "17:58"
    }, {
      "date": "2016-10-03",
      "sunrise": "06:12",
      "sunset": "17:57"
    }]
  }]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25