IP归属地查询
查询IP归属地(自动区分v4&v6)
  • API文档
  • 在线调试
  • 返回码表
  • 示例代码

接口地址: https://api.vore.top/api/IPdata

返回格式: JSON

请求方式: GET

请求示例: https://api.vore.top/api/IPdata?ip=2409:8a00:3271:7750:acde:d0a7:9544:2ddf

请求参数说明:

返回参数说明:

返回示例:

{
    "code": 200,
    "msg": "SUCCESS",
    "ipinfo": {
        "type": "ipv6",
        "text": "2409:8a00:3271:7750:acde:d0a7:9544:2ddf",
        "cnip": true
    },
    "ipdata": {
        "info1": "北京市",
        "info2": "丰台区",
        "info3": "",
        "isp": "移动"
    },
    "adcode": {
        "o": "北京市丰台区|北京北京市区 - 移动",
        "p": "北京",
        "c": "北京",
        "n": "北京-北京",
        "r": "北京-北京市区",
        "a": "110000"
    },
    "tips": "接口由VORE-API(https:\/\/api.vore.top\/)提供",
    "time": 1655458143
}

请求详情设置:


请求参数设置:

参数名 参数值 操作


返回结果:

null

返回码表:

名称 类型 说明
code int 200-请求正常 | 500-请求错误
msg string SUCCESS-请求正常 | ERROR-请求错误
data -> info/tips string 描述当前请求信息(如果存在)

代码示例:

<?php
//要查询的IP地址
$IP = "39.156.69.79";
//拼接url
$url = "https://api.vore.top/api/IPdata?ip=".$IP;
//请求数据并解码
$result = json_decode(file_get_contents($url),true);

//输出IP归属地信息
print_r($result);
?>
当前文档浏览次数: