Recycled Phone Number Lookup
Provides a recycled phone number lookup API service, allowing developers to quickly check reissued mobile number data and integrate it into business systems.
Documentation
Recycled Phone Number Lookup API Overview
The Recycled Phone Number Lookup API helps developers quickly process recycled (reissued) mobile number queries within their systems. It returns structured results and is ideal for business integration, automated API calls, and system docking.
Use Cases
- Integrate recycled phone number lookup 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.
- Recommended to combine with request rate limiting, failure retries, and result caching strategies to improve overall integration stability.
Integration Recommendations
- Verify request parameter formats, authentication methods, and error code handling logic before integration.
- For high-frequency query scenarios, it is recommended to implement log tracking, timeout controls, 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
{
"phone_number": "13800138000",
"date": "2024-01-01"
}Response Example
{
"code": "SUCCESS",
"message": "success",
"data": {
"result": "未发生二次放号"
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| phone_number | string | 13800138000 |
| date | string | 2024-01-01 |
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.result | string | 未发生二次放号 |