免费万年历查询接口

查询指定日期的农历信息

接口功能

给予一个日期,输出当前日期的农历详细信息,包含节气,是否假日等信息。

访问方式
- -
请求方式 GET
请求地址 {{host}}/openapi/icalendar/queryDate
传输协议 HTTP
请求参数
参数 必填 类型 默认 描述
date String - 当前日期,yyyy-MM-dd格式
请求示例
    http://{{host}}/openapi/icalendar/queryDate?date=2020-06-01
响应参数
参数 必填 类型 描述
iYear int 农历年
iMonth int 农历月
iDay int 农历日
iMonthChinese String 农历中文月
iDayChinese String 农历中文日
sYear int 公历年
sMonth int 公历月
sDay int 公历日
cYear String 年柱
cMonth String 月柱
cDay String 日柱
isHoliday boolean 是否节假日
isLeap boolean 是否闰月
solarFestival String 公历节日
solarTerms String 节气
lunarFestival String 农历节日
week String 星期
响应示例
{
    "code": 0,
    "msg": "SUCCESS",
    "time": 1591263463499,
    "data": {
        "iYear": 2020,
        "iMonth": 3,
        "iDay": 12,
        "iMonthChinese": "三月",
        "iDayChinese": "十二",
        "sYear": 2020,
        "sMonth": 4,
        "sDay": 4,
        "cYear": "庚子年",
        "cMonth": "庚辰",
        "cDay": "丁丑",
        "isHoliday": false,
        "isLeap": false,
        "solarFestival": "",
        "solarTerms": "清明",
        "lunarFestival": "",
        "week": "六"
    }
}

查询指定月份的日历详情

接口功能

给予年月,输出当月的日历详情,包含节气,是否假日等信息。

访问方式
- -
请求方式 GET
请求地址 {{host}}/openapi/icalendar/queryMonth
传输协议 HTTP
请求参数
参数 必填 类型 默认 描述
date String - 年月,yyyy-MM格式
请求示例
    http://{{host}}/openapi/icalendar/queryMonth?date=2020-06
响应参数
参数 必填 类型 描述
date String 查询的年月
list List 日期集合
list.iYear int 农历年
list.iMonth int 农历月
list.iDay int 农历日
list.iMonthChinese String 农历中文月
list.iDayChinese String 农历中文日
list.sYear int 公历年
list.sMonth int 公历月
list.sDay int 公历日
list.cYear String 年柱
list.cMonth String 月柱
list.cDay String 日柱
list.isHoliday boolean 是否节假日
list.isLeap boolean 是否闰月
list.solarFestival String 公历节日
list.solarTerms String 节气
list.lunarFestival String 农历节日
list.week String 星期
响应示例
{
    "code": 0,
    "msg": "SUCCESS",
    "time": 1591263927309,
    "data": {
        "date": "2020-06",
        "list": [
            {
                "iYear": 2020,
                "iMonth": 4,
                "iDay": 10,
                "iMonthChinese": "四月",
                "iDayChinese": "初十",
                "sYear": 2020,
                "sMonth": 6,
                "sDay": 1,
                "cYear": "庚子年",
                "cMonth": "辛巳",
                "cDay": "乙亥",
                "isHoliday": false,
                "isLeap": true,
                "solarFestival": " 国际儿童节",
                "solarTerms": "",
                "lunarFestival": "",
                "week": "一"
            },
            ...
        ]
    }
}

点击查看{{host}}信息

你可能感兴趣的:(开放接口,万年历接口,免费接口,免费万年历接口,查询农历,查询假日)