农历信息接口

当前日期的公历和农历信息以及节气信息

接口地址: https://api.ahfi.cn/api/lunarinfo

返回格式: JSON

请求方式: GET

请求示例: https://api.ahfi.cn/api/lunarinfo?type=json

请求参数:

名称 必填 类型 说明
type string 返回数据的类型,可选值为 json 或 text。默认值为 json。

返回参数:

名称 类型 说明
solar_date string 公历日期
lunar_date string 农历日期
current_year string 生肖年
seasonal string 节气

返回示例:

code

  1. {
  2. "code": 200,
  3. "msg": "请求成功",
  4. "data": {
  5. "solar_date": "今天是公元2024年04月29日",
  6. "lunar_date": "农历甲辰年三月廿一",
  7. "current_year": "龙年",
  8. "seasonal": "谷雨后"
  9. }
  10. }