ihmily / ip-info-api

Free IP information query APIs / 免费IP信息查询API接口,GET请求,可直接访问,无任何鉴权
Apache License 2.0
841 stars 75 forks source link

提交新的免费接口 #6

Closed PearsSauce closed 7 months ago

PearsSauce commented 7 months ago

根据IP地址获取地理位置信息(IPv4)

接口:https://api.qjqq.cn/api/district?ip=180.x.x.x 返回示例(示例数据):

{
  "code": 200,
  "data": {
    "ip": "180.x.x.x",
    "continent": "亚洲",
    "country_english": "",
    "country": "中国",
    "prov": "上海",
    "city": "上海",
    "district": "",
    "isp": "电信",
    "lat": "31.231756",
    "lng": "121.472444",
    "area_code": "310110",
    "city_code": "021",
    "elevation": "15",
    "time_zone": "Asia/Shanghai",
    "weather_station": "CHXX0116",
    "zip_code": "200000"
  },
  "msg": "success",
  "time": "2024-03-29 08:48:45",
  "source": "青桔API:api.qjqq.cn"
}

获取本机IP信息(IPv4)

接口:https://api.qjqq.cn/api/Local 返回示例:

{
  "code": 200,
  "data": {
    "ip": "180.x.x.x",
    "continent": "亚洲",
    "country_english": "",
    "country": "中国",
    "prov": "上海",
    "city": "上海",
    "district": "",
    "isp": "电信",
    "lat": "31.231756",
    "lng": "121.472444",
    "area_code": "310110",
    "city_code": "021",
    "elevation": "15",
    "time_zone": "Asia/Shanghai",
    "weather_station": "CHXX0116",
    "zip_code": "200000"
  },
  "msg": "success",
  "time": "2024-03-29 08:48:45",
  "source": "青桔API:api.qjqq.cn"
}
PearsSauce commented 7 months ago

精准度很高

ihmily commented 7 months ago

@NiYa-Q Thanks for your contributions