Mobile Number Status Check
Provides a mobile number status check API service, allowing developers to quickly query phone network status information and integrate it into business systems.
Documentation
Mobile Number Status Check API Overview
The Mobile Number Status Check API helps developers quickly verify phone network status within their systems. It returns structured results and is ideal for scenarios such as number cleansing, marketing filtering, and risk assessment.
Use Cases
- Integrate mobile number status checking capabilities into internal systems, SaaS platforms, automated workflows, or operational backends.
- Suitable for business scenarios requiring stable API calls, standardized responses, and orchestratable interface capabilities.
- We recommend implementing rate limiting, failure retries, and result caching strategies to improve overall integration stability.
Integration Recommendations
- Before integrating, verify the request parameter formats, authentication methods, and error code handling logic.
- For high-frequency query scenarios, ensure proper log tracking, timeout control, and idempotency handling.
- If the results are used for risk control or automated decision-making, we recommend combining them with business rules for secondary validation rather than relying solely on the API response.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{}Response Example
{
"code": 200,
"data": {
"desc": {
"type": "string",
"example": "正常",
"description": "在网状态描述 ,不在网时返回:停机、在网不可用或销号"
},
"status": {
"type": "number",
"example": 0,
"description": "在网状态,0:在网;1:不在网"
},
"channel": {
"type": "string",
"example": "移动",
"description": "运营商 移动、电信、联通"
}
},
"message": "success"
}Response Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | number | 200 |
| data | object | {...} |
| data.desc | object | {...} |
| data.desc.type | string | string |
| data.desc.example | string | 正常 |
| data.desc.description | string | 在网状态描述 ,不在网时返回:停机、在网不可用或销号 |
| data.status | object | {...} |