POSTPublicenterprise-three-check
企业三要素核验
本接口用于核验企业名称、统一社会信用代码和法定代表人姓名三要素是否一致,确保企业信息真实性。
Endpoint
https://openapi.toolkk.com/enterprise/three/check
Rate limit
60 req/min
Timeout
5000 ms
本接口用于核验企业名称、统一社会信用代码和法定代表人姓名三要素是否一致,确保企业信息真实性。
Endpoint
https://openapi.toolkk.com/enterprise/three/check
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/three/check' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: YOUR_API_KEY' \
--data '{}'{}{
"code": 200,
"data": {
"creditNo": {
"type": "boolean",
"example": true,
"description": "统一信用代码是否一致(true: 一致, false:不一致)"
},
"companyName": {
"type": "boolean",
"example": false,
"description": "公司名称是否一致(true: 一致, false:不一致)"
},
"legalPerson": {
"type": "boolean",
"example": false,
"description": "法人名称是否一致(true: 一致, false:不一致)"
}
},
"message": "success"
}The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | number | 200 |
| data | object | {...} |
| data.creditNo | object | {...} |
| data.creditNo.type | string | boolean |
| data.creditNo.example | boolean | true |
| data.creditNo.description | string | 统一信用代码是否一致(true: 一致, false:不一致) |
| data.companyName | object | {...} |
| data.companyName.type | string | boolean |
| data.companyName.example | boolean | false |
| data.companyName.description | string | 公司名称是否一致(true: 一致, false:不一致) |
| data.legalPerson | object | {...} |
| data.legalPerson.type | string | boolean |
| data.legalPerson.example | boolean | false |
| data.legalPerson.description | string | 法人名称是否一致(true: 一致, false:不一致) |
| message | string | success |