提供一站式软件研发管理工具

接口开放平台

基础路径

API BASE URL

  • https://api.lyyltc.site
加载中加载中

扫码关注公众号(微信中打开可直接长按扫码) 回复:接口平台,自动获取apiKey

PS:由于微信限制每个人只能申请一个订阅号,所以我只能用自己已有的这个外卖券公众号来实现下发apiKey的功能。。。

须知:

  1. apiKey永久免费,每日总调用额度50000

  2. 取关后apiKey会失效,关注后会重新生效

  3. 负载均衡保证服务高可用

致谢:大家点外卖前领个券,也算是对我的一点小小鼓励。感谢支持!

TODO:接口会不断扩充,有什么需求或建议可以发邮件到 lyyltc@gmail.com 这个邮箱

API REFERENCE

接口列表

1. 老黄历

GET/api/tools/laohuangli
请求 Request

QUERY

  • datestring必填
    string

    日期

  • apiKeystring必填
    string

    apiKey

响应 Response
状态码 200

参数

  • codeint
    int32

    状态码 0成功 非0失败

  • msgstring
    string

    错误信息

  • detailstring
    string

    错误明细

  • dataobject

    具体接口数据

    • 子属性
    • data.yanglistring
      string

      阳历日期

    • data.yinlistring
      string

      阴历日期

    • data.yistring
      string

    • data.jistring
      string

Example 1

请求示例

文本
GET
{{BASE_URL}}/api/tools/laohuangli?date=2022-10-30&apiKey=apiKey

成功示例

1{
2  "code": 0,
3  "msg": "SUCCESS",
4  "detail": "SUCCESS",
5  "data": {
6    "yangli": "2022-10-30",
7    "yinli": "壬寅(虎)年十月初六",
8    "yi": "祭祀 解除 破屋 坏垣 馀事勿取",
9    "ji": "诸事不宜"
10  }
11}

2. 手机号归属地

GET/api/tools/phoneNoGeo
请求 Request

QUERY

  • phonestring必填
    string

    手机号

  • apiKeystring必填
    string

    apiKey

响应 Response
状态码 200

参数

  • codeint
    int32

    状态码 0成功 非0失败

  • msgstring
    string

    错误信息

  • detailstring
    string

    错误明细

  • dataobject

    具体接口数据

    • 子属性
    • data.provincestring
      string

    • data.citystring
      string

    • data.areaCodestring
      string

      区/县号

    • data.zipCodestring
      string

      邮编

    • data.ispstring
      string

      运营商

Example 1

请求示例

文本
GET
{{BASE_URL}}/api/tools/phoneNoGeo?phone=13200001111&apiKey=apiKey

成功示例

1{
2  "code": 0,
3  "msg": "SUCCESS",
4  "detail": "SUCCESS",
5  "data": {
6    "province": "北京",
7    "city": "北京",
8    "areaCode": "010",
9    "zipCode": "100000",
10    "isp": "中国联通"
11  }
12}

3. ip归属地

GET/api/tools/ipGeo
请求 Request

QUERY

  • ipstring必填
    string

    ip地址(只支持ipv4)

  • apiKeystring必填
    string

    apiKey

响应 Response
状态码 200

参数

  • codeint
    int32

    状态码 0成功 非0失败

  • msgstring
    string

    错误信息

  • detailstring
    string

    错误明细

  • dataobject

    具体接口数据

    • 子属性
    • data.countrystring
      string

      国家/地区

    • data.provincestring
      string

      省份

    • data.citystring
      string

      城市

    • data.districtstring
      string

      区/县

    • data.longitudestring
      string

      经度(粗略的)

    • data.latitudestring
      string

      纬度(粗略的)

Example 1

请求示例

文本
GET
{{BASE_URL}}/api/tools/ipGeo?ip=222.128.190.169&apiKey=apiKey

成功示例

1{
2  "code": 0,
3  "msg": "SUCCESS",
4  "detail": "SUCCESS",
5  "data": {
6    "country": "中国",
7    "province": "北京市",
8    "city": "市辖区",
9    "district": "西城区",
10    "longitude": "116.3861",
11    "latitude": "39.9143"
12  }
13}

4. 经纬度转地址

GET/api/tools/lnglatGeo
请求 Request

QUERY

  • longitudenumber必填
    double

    经度

  • latitudenumber必填
    double

    纬度

  • apiKeystring必填
    string

    apiKey

响应 Response
状态码 200

参数

  • codeint
    int32

    状态码 0成功 非0失败

  • msgstring
    string

    错误信息

  • detailstring
    string

    错误明细

  • dataobject

    具体接口数据

    • 子属性
    • data.countrystring
      string

      国家/地区

    • data.provincestring
      string

      省份

    • data.citystring
      string

      城市

    • data.districtstring
      string

      区/县

    • data.townstring
      string

      街道/乡镇

Example 1

请求示例

文本
GET
{{BASE_URL}}/api/tools/lnglatGeo?longitude=116.3861&latitude=39.9143&apiKey=apiKey

成功示例

1{
2  "code": 0,
3  "msg": "SUCCESS",
4  "detail": "SUCCESS",
5  "data": {
6    "country": "中国",
7    "province": " 北京市",
8    "city": "市辖区",
9    "district": "怀柔区",
10    "town": "琉璃庙镇"
11  }
12}

5. 查询天气预报-根据省市区

GET/api/tools/weather_info/area
请求 Request

QUERY

  • provincestring必填
    string

    省/直辖市

  • citystring必填
    string

  • districtstring必填
    string

  • typestring必填
    可选值:LIVE , FORECAST
    |
    string

    类型 LIVE:实况天气 FORECAST:预报天气

  • apiKeystring必填
    string

    apiKey

响应 Response
状态码 200

参数

  • codeint
    int32

    状态码 0成功 非0失败

  • msgstring
    string

    错误信息

  • detailstring
    string

    错误明细

  • dataobject

    具体接口数据

    • 子属性
    • data.provincestring
      string

      省份/直辖市

    • data.citystring
      string

      城市

    • data.districtstring
      string

      区/县

    • data.liveInfoobject

      实况天气数据信息(type传LIVE时有值)

      • 子属性
      • liveInfo.weatherstring
        string

        天气现象(汉字描述)

      • liveInfo.temperaturestring
        string

        实时气温,单位:摄氏度

      • liveInfo.windDirectionstring
        string

        风向描述

      • liveInfo.windPowerstring
        string

        风力级别,单位:级

      • liveInfo.humiditystring
        string

        空气湿度

      • liveInfo.reportTimestring
        string

        数据发布的时间

    • data.forecastInfosarray

      预报数据(type传FORECAST时有值,且size=3)按顺序为当天、第二天、第三天的预报数据

      • 数组成员object
      • forecastInfos.datestring
        string

        日期

      • forecastInfos.weekstring
        string

        星期几

      • forecastInfos.dayWeatherstring
        string

        白天天气现象

      • forecastInfos.nightWeatherstring
        string

        晚上天气现象

      • forecastInfos.dayTempstring
        string

        白天温度

      • forecastInfos.nightTempstring
        string

        晚上温度

      • forecastInfos.dayWindstring
        string

        白天风向

      • forecastInfos.nightWindstring
        string

        晚上风向

      • forecastInfos.dayPowerstring
        string

        白天风力

      • forecastInfos.nightPowerstring
        string

        晚上风力

      • forecastInfos.reportTimestring
        string

        预报发布时间

Example 1

请求示例

文本
GET
{{BASE_URL}}/api/tools/weather_info/area?province=%E6%B2%B3%E5%8D%97%E7%9C%81&city=%E6%B4%9B%E9%98%B3%E5%B8%82&district=%E6%B6%A7%E8%A5%BF%E5%8C%BA&type=LIVE&apiKey=apiKey

成功示例

1{
2  "code": 0,
3  "msg": "SUCCESS",
4  "detail": "SUCCESS",
5  "data": {
6    "province": "河南省",
7    "city": "洛阳市",
8    "district": "涧西区",
9    "liveInfo": {
10      "weather": "晴",
11      "temperature": "15",
12      "windDirection": "西",
13      "windPower": "≤3",
14      "humidity": "73",
15      "reportTime": "2022-10-30 21:00:07"
16    },
17    "forecastInfos": [
18      {
19        "date": "2022-10-30",
20        "week": "7",
21        "dayWeather": "晴",
22        "nightWeather": "晴",
23        "dayTemp": "11",
24        "nightTemp": "0",
25        "dayWind": "西北",
26        "nightWind": "西北",
27        "dayPower": "4",
28        "nightPower": "4",
29        "reportTime": "2022-10-30 21:01:14"
30      }
31    ]
32  }
33}

6. 查询天气预报-根据省市区

GET/api/tools/weather_info/lnglat
请求 Request

QUERY

  • longitudenumber必填
    double

    经度

  • latitudenumber必填
    double

    纬度

  • typestring必填
    可选值:LIVE , FORECAST
    |
    string

    类型 LIVE:实况天气 FORECAST:预报天气

  • apiKeystring必填
    string

    apiKey

响应 Response
状态码 200

参数

  • codeint
    int32

    状态码 0成功 非0失败

  • msgstring
    string

    错误信息

  • detailstring
    string

    错误明细

  • dataobject

    具体接口数据

    • 子属性
    • data.provincestring
      string

      省份/直辖市

    • data.citystring
      string

      城市

    • data.districtstring
      string

      区/县

    • data.liveInfoobject

      实况天气数据信息(type传LIVE时有值)

      • 子属性
      • liveInfo.weatherstring
        string

        天气现象(汉字描述)

      • liveInfo.temperaturestring
        string

        实时气温,单位:摄氏度

      • liveInfo.windDirectionstring
        string

        风向描述

      • liveInfo.windPowerstring
        string

        风力级别,单位:级

      • liveInfo.humiditystring
        string

        空气湿度

      • liveInfo.reportTimestring
        string

        数据发布的时间

    • data.forecastInfosarray

      预报数据(type传FORECAST时有值,且size=3)按顺序为当天、第二天、第三天的预报数据

      • 数组成员object
      • forecastInfos.datestring
        string

        日期

      • forecastInfos.weekstring
        string

        星期几

      • forecastInfos.dayWeatherstring
        string

        白天天气现象

      • forecastInfos.nightWeatherstring
        string

        晚上天气现象

      • forecastInfos.dayTempstring
        string

        白天温度

      • forecastInfos.nightTempstring
        string

        晚上温度

      • forecastInfos.dayWindstring
        string

        白天风向

      • forecastInfos.nightWindstring
        string

        晚上风向

      • forecastInfos.dayPowerstring
        string

        白天风力

      • forecastInfos.nightPowerstring
        string

        晚上风力

      • forecastInfos.reportTimestring
        string

        预报发布时间

Example 1

请求示例

文本
GET
{{BASE_URL}}/api/tools/weather_info/lnglat?longitude=116.3861&latitude=39.9143&type=LIVE&apiKey=apiKey

成功示例

1{
2  "code": 0,
3  "msg": "SUCCESS",
4  "detail": "SUCCESS",
5  "data": {
6    "province": "河南省",
7    "city": "洛阳市",
8    "district": "涧西区",
9    "liveInfo": {
10      "weather": "晴",
11      "temperature": "15",
12      "windDirection": "西",
13      "windPower": "≤3",
14      "humidity": "73",
15      "reportTime": "2022-10-30 21:00:07"
16    },
17    "forecastInfos": [
18      {
19        "date": "2022-10-30",
20        "week": "7",
21        "dayWeather": "晴",
22        "nightWeather": "晴",
23        "dayTemp": "11",
24        "nightTemp": "0",
25        "dayWind": "西北",
26        "nightWind": "西北",
27        "dayPower": "4",
28        "nightPower": "4",
29        "reportTime": "2022-10-30 21:01:14"
30      }
31    ]
32  }
33}

7. 简繁体转换

GET/api/tools/jianfan
请求 Request

QUERY

  • strstring必填
    string

    原始字符串

  • typestring必填
    可选值:J2F , F2J
    |
    string

    类型 J2F:简体转繁体 F2J:繁体转简体

  • apiKeystring必填
    string

    apiKey

响应 Response
状态码 200

参数

  • codeint
    int32

    状态码 0成功 非0失败

  • msgstring
    string

    错误信息

  • detailstring
    string

    错误明细

  • dataobject

    具体接口数据

    • 子属性
    • data.strstring
      string

      转换后的字符串

Example 1

请求示例

文本
GET
{{BASE_URL}}/api/tools/jianfan?str=%E5%8E%89%E5%AE%B3&type=J2F&apiKey=apiKey

成功示例

1{
2  "code": 0,
3  "msg": "SUCCESS",
4  "detail": "SUCCESS",
5  "data": {
6    "str": "厲害"
7  }
8}

8. 中文转拼音

GET/api/tools/pinyin
请求 Request

QUERY

  • strstring必填
    string

    中文字符串

  • typestring必填
    可选值:NONE , NUM , UNICODE
    |
    string

    音调类型 NONE:无音调 NUM:数字音调 UNICODE:unicode音调

  • apiKeystring必填
    string

    apiKey

响应 Response
状态码 200

参数

  • codeint
    int32

    状态码 0成功 非0失败

  • msgstring
    string

    错误信息

  • detailstring
    string

    错误明细

  • dataarray

    具体接口数据

    • 数组成员string

Example 1

请求示例

文本
GET
{{BASE_URL}}/api/tools/pinyin?str=%E5%8E%89%E5%AE%B3&type=NONE&apiKey=apiKey

成功示例

1{
2  "code": 0,
3  "msg": "SUCCESS",
4  "detail": "SUCCESS",
5  "data": [
6    "string"
7  ]
8}
© 2022 深圳市腾云扣钉科技有限公司 | 粤ICP备14029750号-1