POSTPublicmobile-status-check
手机号在网状态查询
查询手机号码的在网状态,包括是否正常使用、停机或空号等信息,帮助企业验证号码有效性。
Endpoint
https://openapi.toolkk.com/mobile_status/check
Rate limit
60 req/min
Timeout
5000 ms
查询手机号码的在网状态,包括是否正常使用、停机或空号等信息,帮助企业验证号码有效性。
Endpoint
https://openapi.toolkk.com/mobile_status/check
Rate limit
60 req/min
Timeout
5000 ms
All endpoints are intended to be parsed with the standard code, message, and data structure.
{ code, message, data }
curl --request POST \
--url 'https://openapi.toolkk.com/mobile_status/check' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: YOUR_API_KEY' \
--data '{}'{}{
"code": 200,
"data": {
"result": {
"type": "string",
"example": "1",
"description": "0销号或未启用(不在网),1正常,2停机,3在网但不可用,4预销号 5关机"
},
"channel": {
"type": "string",
"example": "移动",
"description": "移动,电信,联通,广电"
},
"orderNo": {
"type": "string",
"example": "202406282055560705659"
},
"resultMsg": {
"type": "string",
"example": "正常"
},
"transferStatus": {
"type": "string",
"example": "0",
"description": "0未转网 1转网"
}
},
"message": "success"
}The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | number | 200 |
| data | object | {...} |
| data.result | object | {...} |
| data.result.type | string | string |
| data.result.example | string | 1 |
| data.result.description | string | 0销号或未启用(不在网),1正常,2停机,3在网但不可用,4预销号 5关机 |
| data.channel | object | {...} |
| data.channel.type | string | string |
| data.channel.example | string | 移动 |
| data.channel.description | string | 移动,电信,联通,广电 |
| data.orderNo | object | {...} |
| data.orderNo.type | string | string |
| data.orderNo.example | string | 202406282055560705659 |
| data.resultMsg | object | {...} |
| data.resultMsg.type | string | string |
| data.resultMsg.example | string | 正常 |
| data.transferStatus | object | {...} |
| data.transferStatus.type | string | string |
| data.transferStatus.example | string | 0 |
| data.transferStatus.description | string | 0未转网 1转网 |
| message | string | success |