手机归属地API接口


点击链接自动复制

接口地址:

http://api.xsdggw.cn/api/guishudi.php

返回格式:

JSON

请求方式:

GET

请求示例:

http://api.xsdggw.cn/api/guishudi.php?tel=手机号

演示效果

看本页背景效果{"response":{"13145211010":{"detail":{"area":[{"city":"徐州"}],"province":"江苏","type":"domestic","operator":"联通"},"location":"江苏徐州联通"}},"responseHeader":{"status":200,"time":1551766092985,"version":"1.1.0"}}

调用代码

自行调用

调用代码

<?php
header("Content-Type:text/json;charset=UTF-8");
$num = $_GET['num'];
$result = file_get_contents("http://api.xsdggw.cn/api/guishudi.php?tel=".$num);
echo $result;
?>