# 查询手机号所在地区


# 接口地址

http://api.1cloudsp.com/open/api/qry/mobiles/section

用户通过HTTP(或HTTPS)的POST或GET方式提交短信发送请求。编码采用 UTF-8 编码。


# 请求参数

参数名 是否必填 类型 示例 描述
accesskey String xxxxxxxxxx 秘钥key
secret String yyyyyyyyyy 秘钥secret
mobiles String 手机号 多个手机号用英文逗号分开

# 返回参数

参数名 类型 说明 描述
ret Int 请求状态数 0表示请求成功,非0表示请求失败;
msg String 状态说明
batchId String 批次id

# 返回示例

{
    "ret":0,
    "msg":null,
    "data":[
        {
            "province":"安徽",
            "city":"合肥",
            "operator":"移动",
            "mobile":"18256950000"
        }
    ]
}