POSTrandom-address-generate
随机地址生成
Documentation
批量生成随机中国地址(省市区+街道门牌),支持按省份/城市筛选。最多100条/次。
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"count": 5,
"country": "CN",
"province": "广东",
"city": "深圳"
}Response Example
{
"code": "SUCCESS",
"message": "success",
"data": [
{
"province": "广东省",
"city": "深圳市",
"district": "南山区",
"street": "科技路88号",
"zipCode": "518000",
"full": "广东省深圳市南山区科技路88号",
"country": "CN"
}
]
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| count | number | 5 |
| country | string | CN |
| province | string | 广东 |
| city | string | 深圳 |
Response Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | string | SUCCESS |
| message | string | success |
| data | array | {"province":"广东省","city":"深圳市","district":"南山区","street":"科技路88号","zipCode":"518000","full":"广东省深圳市南山区科技路88号","country":"CN"} |
| data[] | object | {...} |
| data[].province | string | 广东省 |
| data[].city | string | 深圳市 |
| data[].district | string |