Phone Number Location Lookup
Provides phone number location lookup services to quickly retrieve detailed information such as state/province, city, and carrier. Ideal for targeted marketing and risk management.
Documentation
Features
This API provides an efficient and accurate phone number location lookup service. Users simply enter a phone number to quickly retrieve its associated province/state, city, area code, zip code, and carrier information (e.g., Mobile, Unicom, Telecom). Data is updated in real-time to ensure the accuracy and timeliness of the results.
Use Cases
- E-commerce & Marketing: Identify user regions for targeted marketing and product recommendations.
- Risk Management & Anti-Fraud: Verify phone number locations during user registration or transactions to support risk assessment.
- Logistics & Delivery: Optimize delivery routes to improve logistics efficiency.
- User Profiling: Enrich user data for deeper behavioral analysis.
- Number Scrubbing: Batch process phone number data to filter out invalid or abnormal numbers.
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": {
"province": "北京",
"city": "北京",
"operator": "中国移动",
"areaCode": "010",
"postCode": "100000"
}
}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.province | string | 北京 |
| data.city | string | 北京 |
| data.operator | string | 中国移动 |
| data.areaCode | string | 010 |