Home

手机号归属地查询API源码

返回值演示:

{
  "code": "200",
  "tel": "15029050105",
  "local": "归属地:陕西省西安市",
  "duan": "号码段:1502905",
  "type": "卡类型:陕西移动全球通卡",
  "yys": "运营商:中国移动",
  "bz": "通信标准:GSM (全球移动通信系统)"
}

接口源码:

<?php
$num = $_GET['num'];
$result = file_get_contents("https://api.vvhan.com/api/phone?tel=" . $num);
header("Content-Type:text/html;charset=UTF-8");
print_r($result);
if ($arr['code'] == 1) {
}
?>