行政区划查询
最后更新于:2022-04-02 08:24:26
## 行政区划查询(免费)
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/4a/cb/4acbeef8d643b44d9ebaff49c3e13a58_184x145.png)
> 全国行政区查询,支持省、市、区县、乡镇。最大4级
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/postcode/zone
```
### 请求参数
| 名称 | 必填 | 类型 | 说明 |
| --- | --- | --- | --- |
| appCode| 是| string|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| fid | 是 | string | 上级地区代码,0为省级,其他传相应级别id代码 |
### 返回参数
| 名称 | 类型 | 说明 |
| --- | --- | --- |
| id | string | 区域代码id |
| name | string | 区域名称 |
| fid | string | 上级区域代码 |
| level\_id | string | 当前区域等级,最大4级 |
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->postcodeZone()
->withFid('320000')
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功的返回",
"data": {
"data": {
{
"id":"320100",
"name":"南京市",
"fid":"320000",
"level_id":"2"
},
{
"id":"320200",
"name":"无锡市",
"fid":"320000",
"level_id":"2"
},
...
}
},
}
~~~
';