收货地址解析
快递物流地址智能解析

接口地址: https://api.qsir.cn/api/dm-addressparse

返回格式: JSON

请求方式: GET/POST

请求示例: https://api.qsir.cn/api/dm-addressparse?text=马云13800138000杭州市滨江区网商路699号

即2023年9月1号起,所有接口请求必须携带秘钥,否则请求失败!!

请求参数说明:

名称 必填 类型 说明
text String 文本内容

返回参数说明:

名称 类型 说明
mobile String 移动电话号码
name String 收货人姓名
province String 省/特区/自治区/直辖市
city String 城市
district String 区县
postcode String 邮编(文本中优先否则默认区县级)
detail String 完整地址

返回示例:

{
  "code": 200,
  "msg": "success",
  "result": {
    "mobile": "13800138000",
    "name": "马云",
    "province": "浙江省",
    "city": "杭州市",
    "district": "滨江区",
    "postcode": "310052",
    "detail": "浙江省杭州市滨江区网商路699号"
  }
}

请求参数设置:

参数名称 参数值


{
  "code": 200,
  "msg": "success",
  "result": {
    "mobile": "13800138000",
    "name": "马云",
    "province": "浙江省",
    "city": "杭州市",
    "district": "滨江区",
    "postcode": "310052",
    "detail": "浙江省杭州市滨江区网商路699号"
  }
}

错误码格式说明:

名称 类型 说明
code int 成功
msg String 错误

代码示例:

暂无示例。