Chinese ID Card Location Lookup
Look up the location of an ID card number, including province and city. Supports fast verification and lookup of mainland China ID card numbers.
Documentation
Feature Introduction
This API provides a location lookup service for ID card numbers. Users simply input a valid mainland China ID card number, and the system will return the corresponding province and city information. Based on authoritative data sources, this service ensures accurate and real-time results, providing reliable data support for your business.
Application Scenarios
- Real-Name Authentication: Verify whether the ID card information provided by users matches their actual location during registration, transactions, or other sensitive operations to improve authentication accuracy.
- Risk Control: The finance and e-commerce industries can use this API to determine the regional distribution of users. Combined with other risk control strategies, it helps identify potential fraudulent behavior.
- Regional Data Analysis: Enterprises can collect user ID card location data for market analysis and user persona construction to optimize products and marketing strategies.
- Logistics and Delivery Optimization: In the e-commerce or logistics industry, predict the region of the delivery address based on the ID card location to assist in logistics route planning and cost estimation.
- Government Services: Government agencies can verify citizen identity information when processing services to ensure accuracy and compliance.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"idCardNo": "110105199003078887"
}Response Example
{
"code": "SUCCESS",
"message": "success",
"data": {
"province": "北京市",
"city": "北京市",
"district": "西城区",
"sex": "男",
"birthday": "19900307"
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| idCardNo | string | 110105199003078887 |
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.district | string | 西城区 |
| data.sex | string | 男 |