首页 位置服务 基站查询
基站查询

基站查询

  • 2180
  • 2104
支持联通、移动、电信三网基站查询,通过CELLID和LAC获取位置的粗略信息。
200.00/5000次
https://api.binstd.com/cell/query
JSON,JSONP
GET POST
https://api.binstd.com/cell/query?appkey=yourappkey&mnc=0&lac=22709&cellid=39205&sid=&nid=

请求参数:

API在线测试
参数名称类型必填说明
mnc string 移动网络代号 移动0 联通1
lac string 小区号(移动联通填写mnc、lac、cellid,电信填写cellid、sid、nid)
cellid string 基站号 电信对应bid
sid string 系统识别码,每个地级市只有一个
nid string 网络识别码,每个地级市可能有1-3个

返回参数:

参数名称类型说明
lat string 纬度
lng string 经度
addr string 地址
accuracy string 精度

请求代码:

查看代码
<?php

require 'curl.func.php';

$appkey = 'your_appkey_here';
$mnc = 0;//0移动 1联通  
$lac = '22709'; 
$cellid = '39205'; 
$sid = '';//电信填写
$nid = '';//电信填写
$result = curlOpen("https://api.binstd.com/cell/query?mnc=$mnc&lac=$lac&cellid=$cellid&sid=$sid&nid=$nid&appkey=$appkey");
$jsonarr = json_decode($result, true);
//exit(var_dump($jsonarr));

if($jsonarr['status'] != 0)
{
    echo $jsonarr['msg'];
    exit();
}

$result = $jsonarr['result'];
echo $result['lat'].' '.$result['lng'].' '.$result['addr'].' '.$result['accuracy'];
                    

JSON返回示例 :

{
    "status": "0",
    "msg": "ok",
    "result": {
        "lat": "30.28195000",
        "lng": "120.10932159",
        "addr": "浙江省杭州市西湖区古荡街道益乐路36-1号,益乐路与华星里街路口西北11.02米",
        "accuracy": "100"
    }
}
                    

API错误码:

代号说明
201 SID为空
202 NID为空
210 没有信息

系统错误码:

代号说明
101 APPKEY为空或不存在
102 APPKEY已过期
103 APPKEY无请求此数据权限
104 请求超过次数限制
105 IP被禁止
106 IP请求超过限制
107 接口维护中
108 接口已停用
名称权限价格
免费套餐 5次 免费
Level1 5000次 200.00元
Level2 10000次 358.00元
Level3 50000次 1720.00元

活动推荐ACTIVITY 更多

  • orc活动

热门API接口推荐RECOMMENDED DATA 更多

开通BinSTD会员

开通账号:

×

会员类型:

  • 会员

会员时长:

  • 按年付

总金额:

  • ¥ 600.00元原价:900.00元
  • ¥ 300.00元原价:450.00元
  • ¥ 50.00元原价:75.00元
  • ¥ 100.00元原价:150.00元
  • ¥ 150.00元原价:225.00元
  • ¥ 200.00元原价:300.00元
  • ¥ 250.00元原价:375.00元