POSTPublicenterprise-two-validate-detail
企业二要素核验
核验企业的统一社会信用代码和企业名称是否一致,确保企业信息的真实性与合法性。
Endpoint
https://openapi.toolkk.com/enterprise/two/validate-detail
Rate limit
60 req/min
Timeout
5000 ms
核验企业的统一社会信用代码和企业名称是否一致,确保企业信息的真实性与合法性。
Endpoint
https://openapi.toolkk.com/enterprise/two/validate-detail
Rate limit
60 req/min
Timeout
5000 ms
All endpoints are intended to be parsed with the standard code, message, and data structure.
{ code, message, data }
curl --request POST \
--url 'https://openapi.toolkk.com/enterprise/two/validate-detail' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: YOUR_API_KEY' \
--data '{}'{}{
"code": 200,
"data": {
"result": {
"type": "number",
"example": 1,
"description": "1 验证通过, 2 验证不通过, 3 无法验证, 4 无记录"
},
"resultMsg": {
"type": "string",
"example": "验证通过",
"description": "验证结果描述"
},
"enterpriceNoResult": {
"type": "number",
"example": 1,
"description": "1 匹配, 2 不匹配, 3 无法验证"
},
"enterpriceNameResult": {
"type": "number",
"example": 2,
"description": "1 匹配, 2 不匹配, 3 无法验证"
},
"enterpriceNoResultMsg": {
"type": "string",
"example": "匹配",
"description": "验证结果描述"
},
"enterpriceNameResultMsg": {
"type": "string",
"example": "不匹配",
"description": "验证结果描述"
}
},
"message": "success"
}The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | number | 200 |
| data | object | {...} |
| data.result | object | {...} |
| data.result.type | string | number |
| data.result.example | number | 1 |
| data.result.description | string | 1 验证通过, 2 验证不通过, 3 无法验证, 4 无记录 |
| data.resultMsg | object | {...} |
| data.resultMsg.type | string | string |
| data.resultMsg.example | string | 验证通过 |
| data.resultMsg.description | string | 验证结果描述 |
| data.enterpriceNoResult | object | {...} |
| data.enterpriceNoResult.type | string | number |
| data.enterpriceNoResult.example | number | 1 |
| data.enterpriceNoResult.description | string | 1 匹配, 2 不匹配, 3 无法验证 |
| data.enterpriceNameResult | object | {...} |
| data.enterpriceNameResult.type | string | number |
| data.enterpriceNameResult.example | number | 2 |
| data.enterpriceNameResult.description | string | 1 匹配, 2 不匹配, 3 无法验证 |
| data.enterpriceNoResultMsg | object | {...} |
| data.enterpriceNoResultMsg.type | string | string |
| data.enterpriceNoResultMsg.example | string | 匹配 |
| data.enterpriceNoResultMsg.description | string | 验证结果描述 |
| data.enterpriceNameResultMsg | object | {...} |
| data.enterpriceNameResultMsg.type | string | string |
| data.enterpriceNameResultMsg.example | string | 不匹配 |
| data.enterpriceNameResultMsg.description | string | 验证结果描述 |
| message | string | success |