POST已开放company_search-query
企业工商模糊查询
提供企业工商信息的模糊查询功能,帮助用户快速检索企业名称、注册号等关键信息,提升数据检索效率。
请求地址
https://openapi.toolkk.com/api/company_search/query
默认限流
60 次/分钟
超时时间
5000 ms
提供企业工商信息的模糊查询功能,帮助用户快速检索企业名称、注册号等关键信息,提升数据检索效率。
请求地址
https://openapi.toolkk.com/api/company_search/query
默认限流
60 次/分钟
超时时间
5000 ms
所有接口都建议按 code、message、data 的标准结构进行解析。
{ code, message, data }
curl --request POST \
--url 'https://openapi.toolkk.com/api/company_search/query' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: YOUR_API_KEY' \
--data '{}'{}{
"code": 200,
"data": {
"orderNo": {
"type": "string",
"example": "202407012032596444075"
},
"pageInfo": {
"type": "object",
"properties": {
"pageSize": {
"type": "string",
"example": "10"
},
"pageIndex": {
"type": "string",
"example": "1"
},
"totalRecords": {
"type": "string",
"example": "14"
}
}
},
"companyList": {
"type": "array",
"items": {
"type": "object",
"properties": {
"creditNo": {
"type": "string",
"example": "1252030***47168D",
"description": "统一社会信用码"
},
"companyCode": {
"type": "string",
"example": "1252***4777",
"description": "注册号"
},
"companyName": {
"type": "string",
"example": "苹果**有限公司",
"description": "企业(机构)名称"
},
"legalPerson": {
"type": "string",
"example": "施*焕",
"description": "法人名称"
},
"companyStatus": {
"type": "string",
"example": "正常",
"description": "企业状态"
},
"establishDate": {
"type": "string",
"example": "20201123",
"description": "注册日期"
}
}
},
"example": [
{
"creditNo": "1252030***47168D",
"companyCode": "1252***4777",
"companyName": "苹果**有限公司",
"legalPerson": "施*焕",
"companyStatus": "正常",
"establishDate": "20201123"
}
]
}
},
"message": "success"
}以下字段根据示例 JSON 自动提取,仅作接入参考。
| 字段路径 | 类型 | 示例值 |
|---|---|---|
| code | number | 200 |
| data | object | {...} |
| data.orderNo | object | {...} |
| data.orderNo.type | string | string |
| data.orderNo.example | string | 202407012032596444075 |
| data.pageInfo | object | {...} |
| data.pageInfo.type | string | object |
| data.companyList |
| object |
| {...} |
| data.companyList.type | string | array |
| message | string | success |