首页 生活服务 邮编查询
邮编查询

邮编查询

  • 1093
  • 0
全国30多个省市县的邮编号码查询,数据权威准确,数百万条数据,精确到区、县、街道。支持按模糊地址、指定区域地址查询邮编。
http[s]://api.liangmlk.cn?appid=2091&ak=*****
暂无
JSON
1 点/次
GET
51

GET请求参数:

参数名称 参数类型 必填 默认值 示例值 备注
zipcode string true 100000 邮编

请求示例代码:

<?php

    header('content-type:text/html;charset=utf-8');
	$ch  = curl_init();
	$url = 'https://api.liangmlk.cn?ak=xxxx&appid=2091&zipcode=xxxx';
	curl_setopt($ch,CURLOPT_URL,$url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
	$res = curl_exec($ch);
	curl_close($ch);
	return json_decode($res,true);
                    

JSON返回示例 [仅供参考,请以实际返回为准]:

其它推荐RECOMMENDED DATA 更多