Phone Number Porting Check
Provides a mobile number porting eligibility check service, allowing you to verify if a phone number meets porting conditions and check for any restrictions.
Documentation
Mobile Number Portability Check API
Feature Overview
This API provides real-time eligibility checks for mobile number porting. By entering a phone number, users can quickly determine if the number meets porting requirements or if it is restricted by active contracts, overdue balances, or premium number agreements. The query results clearly indicate the porting status and detail any reasons for ineligibility. This service helps users understand their number's status before initiating a port request, significantly improving processing efficiency.
Use Cases
- Self-Service Porting Check: Users can verify their number's eligibility before requesting a transfer, avoiding unnecessary trips and saving time.
- Carrier and Service Provider Assistance: Carriers or third-party providers can use this API to quickly verify a user's number status during consultations or porting services, ensuring more accurate and efficient support.
- Online Platform Integration: Integrate this feature into telecom portals, mobile apps, and other online platforms to enhance the self-service experience and streamline business workflows.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"mobile_number": "13800138000"
}Response Example
{
"code": "SUCCESS",
"message": "success",
"data": {
"transfer": "未携转",
"originalOperator": "中国移动",
"currentOperator": "中国移动"
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| mobile_number | string | 13800138000 |
Response Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | string | SUCCESS |
| message | string | success |
| data | object | {...} |
| data.transfer | string | 未携转 |
| data.originalOperator | string | 中国移动 |
| data.currentOperator | string | 中国移动 |