POSTrandom-mac-generate
随机MAC地址生成
Documentation
批量生成随机MAC地址,支持冒号/短横线/点号/无分隔格式。最多100条/次。
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"count": 10,
"format": "colon",
"uppercase": true
}Response Example
{
"code": "SUCCESS",
"message": "success",
"data": [
"02:1A:3B:4C:5D:6E"
]
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| count | number | 10 |
| format | string | colon |
| uppercase | boolean | true |
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 | "02:1A:3B:4C:5D:6E" |
| data[] | string | 02:1A:3B:4C:5D:6E |