POSTrandom-email-generate
随机邮箱生成
Documentation
批量生成随机邮箱地址,支持自定义前缀长度、字符集、域名。最多100条/次。
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"count": 10,
"minLength": 6,
"maxLength": 10,
"includeLowercase": true,
"includeNumbers": true,
"domains": [
"gmail.com",
"outlook.com"
]
}Response Example
{
"code": "SUCCESS",
"message": "success",
"data": [
"a8kx2m@gmail.com",
"jd7fn4p@outlook.com"
]
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| count | number | 10 |
| minLength | number | 6 |
| maxLength | number | 10 |
| includeLowercase | boolean | true |
| includeNumbers | boolean | true |
| domains | array | "gmail.com" |
| domains[] | string | gmail.com |
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 | "a8kx2m@gmail.com" |
| data[] | string | a8kx2m@gmail.com |