IP地址查询API
IP地址归属地详情查询

接口地址: http://你的域名/api/dm-ipquery

返回格式: UTF-8/JSON

请求方式: GET/POST

请求示例: http://你的域名/api/dm-ipquery?ip=183.192.70.211

请求参数说明:

名称 类型 必填 示例值 说明
IP string 183.192.70.211 IP地址
longitude string 121.472644 位置经度
latitude string 31.231706 位置纬度

返回参数说明:

名称 类型 示例值 说明
continent string 亚洲 大陆州
country string 中国 国家
province string 上海 省级行政区
city string 上海 城市
district string 黄埔 地区
isp string 移动 网络运营商
areacode string 310100 地区编码
countrycode string CN 国家代码
countryenglish string China 国家英文名称
longitude string 121.472644 经度
latitude string 31.231706 纬度

返回示例:

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

错误码格式说明:

名称 类型 说明
code String 返回的状态码 -1/1 失败/成功
msg String 返回结果提示信息!

代码示例:

暂无示例.