稳定、快速、免费的 API 接口服务
快递物流地址智能解析
接口地址: https://api.xdau.cn/api/xd-addressparse
返回格式: JSON
请求方式: GET/POST
请求示例: https://api.xdau.cn/api/xd-addressparse?text=马云13800138000杭州市滨江区网商路699号
所有接口需携带秘钥,以免更新导致请求失败!
请求参数说明:
名称 | 必填 | 类型 | 说明 |
---|---|---|---|
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 | int | 成功 |
msg | String | 错误 |
代码示例:
暂无示例。