POSTrandom-phone-generate
随机手机号生成
Documentation
批量生成随机手机号,支持中国(按运营商)、美国、日本等多国。最多100条/次。
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"count": 10,
"country": "CN",
"operator": "all",
"includeDialCode": false,
"formatWithDash": false
}Response Example
{
"code": "SUCCESS",
"message": "success",
"data": [
"13812345678",
"15987654321"
]
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| count | number | 10 |
| country | string | CN |
| operator | string | all |
| includeDialCode | boolean | false |
| formatWithDash | boolean | false |
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 | "13812345678" |
| data[] | string | 13812345678 |