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

基站查询

  • 2180
  • 2104
支持联通、移动、电信三网基站查询,通过CELLID和LAC获取位置的粗略信息。
245.00/10000次
申请就送10次
https://api.jisuapi.com/cell/query
JSON,JSONP
GET POST
https://api.jisuapi.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.jisuapi.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 接口已停用
计次套餐套餐规格价格
免费套餐 10次 0.00 元  ≈0元/次
Level1 10000次 245.00 元  ≈0.0245元/次
Level2 20000次 485.00 元  ≈0.02425元/次
Level3 50000次 1200.00 元  ≈0.024元/次
Level4 100000次 2375.00 元  ≈0.02375元/次
* 包月套餐和计次套餐不可同时购买,不可叠加使用。
包月套餐套餐规格价格
Level2
特惠
3000次/天 1525.00元 ≈0.01694元/次
Level3 6000次/天 2850.00元 ≈0.01583元/次
Level4 10000次/天 4400.00元 ≈0.01467元/次
* 套餐使用时限为订购之日起30日。

活动推荐ACTIVITY 更多

  • orc活动

其它推荐RECOMMENDED DATA 更多