开发者对接教程 + 在线接口调试工具 | 当前本机IP:216.73.217.59
本站接口路径:https://cmun.net/api.php
功能:传入IP地址,返回该IP归属地、运营商等完整信息
请求方式:GET
请求参数:ip 字符串,必填
# curl调用示例
curl https://cmun.net/api.php?ip=1.1.1.1
功能:无需传IP,自动获取当前访客出口公网IP
请求方式:GET
请求参数:myip=1
# curl调用示例
curl https://cmun.net/api.php?myip=1
<?php
// PHP请求接口示例
$ip = "1.1.1.1";
$apiUrl = "https://cmun.net/api.php?ip=".urlencode($ip);
$json = file_get_contents($apiUrl);
$data = json_decode($json,true);
print_r($data);
?>
// JS fetch请求示例
fetch('https://cmun.net/api.php?ip=1.1.1.1')
.then(res=>res.json())
.then(ret=>{
console.log(ret);
})