Restricted Consumption Personnel Lookup
Query whether an individual is on the restricted high-consumption list based on name, ID number, and mobile number, returning verification results and related record lists, suitable for risk control review and background checks.
Documentation
API Capabilities
The Restricted High-Consumption Personnel Query API allows enterprises to query whether an individual is listed on the restricted high-consumption (referred to as "restricted spending") personnel list by inputting their name, ID number, and mobile number. The API will return a clear verification result (e.g., whether they are on the list), along with the total number of related records and a detailed list. This API can provide auxiliary information for enterprise credit assessment, risk control, and background checks.
Request and Response
- Request Parameters: The
name(name),idcard_number(ID number), andmobile_number(mobile number) of the queried person must be provided simultaneously. Please ensure the input information is true, valid, and matching. - Return Results: In the returned
dataobject, theresultfield describes the current status (e.g., "Not listed on the restricted consumption list"),totalindicates the number of relevant records, and thelistarray contains specific restricted spending record details (if any). - Troubleshooting Failures: If the query fails or an error occurs, please check if the ID number format is valid and if the mobile number is a standard 11-digit number.
Use Cases
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"name": "张三",
"idcard_number": "110105199003078887",
"mobile_number": "13800138000"
}Response Example
{
"code": "SUCCESS",
"message": "success",
"data": {
"result": "未列入限制消费名单",
"total": 0,
"list": []
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| name | string | 张三 |
| idcard_number | string | 110105199003078887 |
| 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.result | string | 未列入限制消费名单 |
| data.total | number | 0 |
| data.list | array | [] |