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
すべての API は 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 |