ip地址查询

IP地址库查询接口,根据IP地址或经纬度查询归属地/州/国家/省市区/经纬度及网络运营商ISP等信息。不传任何参数的情况下,默认为请求来源ip的相关信息。

接口文档

接口地址: https://whyta.cn/api/tx/ipquery

返回格式: JSON

请求方式: GET

请求示例:https://whyta.cn/api/tx/ipquery?key=你的APIKEY&ip=192.70.2.1

接口备注:4 =>扫码关注公众号获取APIKEY<=

请求参数:

参数类型必填示例值说明
keystring你的APIKEY
ipstring183.192.70.211IP地址
longitudestring121.472644位置经度
latitudestring31.231706位置纬度

返回参数说明:

参数类型示例说明
continentstring亚洲大陆州
countrystring中国国家
provincestring上海省级行政区
citystring上海城市
districtstring黄埔地区
ispstring移动网络运营商
areacodestring310100地区编码
countrycodestringCN国家代码
countryenglishstringChina国家英文名称
longitudestring121.472644经度
latitudestring31.231706纬度

返回示例:

JSON返回示例

{
  "code": 200,
  "msg": "success",
  "result": {
    "ip": "183.192.70.211",
    "continent": "亚洲",
    "country": "中国",
    "province": "上海",
    "city": "上海",
    "district": "徐汇区",
    "isp": "移动",
    "areacode": "310100",
    "countrycode": "CN",
    "countryenglish": "China",
    "longitude": "121.472644",
    "latitude": "31.231706"
  }
}