稳定、快速、免费的 API 接口服务
快递物流地址智能解析
接口地址: https://58.linkpc.net/doc/addressparse.html
返回格式: JSON
请求方式: GET/POST
请求示例: https://58.linkpc.net/api/addressparse?text=马云13800138000杭州市滨江区网商路699号
请求参数说明:
名称 | 必填 | 类型 | 说明 |
---|---|---|---|
text | 是 | String | 文本内容 |
返回参数说明:
名称 | 类型 | 说明 |
---|---|---|
mobile | String | 移动电话号码 |
name | String | 收货人姓名 |
province | String | 省/特区/自治区/直辖市 |
city | String | 城市 |
district | String | 区县 |
postcode | String | 邮编(文本中优先否则默认区县级) |
detail | String | 完整地址 |
返回示例:
{
"code": 200,
"msg": "success",
"data": {
"mobile": "13800138000",
"name": "马云",
"province": "浙江省",
"city": "杭州市",
"district": "滨江区",
"postcode": "310051",
"detail": "杭州市滨江区网商路699号"
}
}
错误码格式说明:
名称 | 类型 | 说明 |
---|
代码示例:
<?php
header('Content-type: application/json; charset=utf-8');
date_default_timezone_set('PRC');
$url = 'https://58.linkpc.net/api/addressparse';
$type = isset($_GET['type']) ? $_GET['type'] : '';
if ($type == 'json' || $type == 'JSON') {
$result = file_get_contents($url . '?type=json');
echo htmlspecialchars($result);
} else {
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$contentType = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
curl_close($ch);